/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2016-09-30 16:42:30 */

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_eg_grids` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `postparams` text NOT NULL,
  `params` text NOT NULL,
  `layers` mediumtext NOT NULL,
  `settings` text,
  `last_modified` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_eg_item_elements` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `settings` mediumtext NOT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

CREATE TABLE `wp_eg_item_skins` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `params` text NOT NULL,
  `layers` mediumtext NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=45 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_eg_navigation_skins` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `handle` varchar(255) NOT NULL,
  `css` mediumtext NOT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_events` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `post_id` mediumint(9) NOT NULL,
  `start_date` datetime DEFAULT NULL,
  `end_date` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=139461 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=54181 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=17779 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` text,
  `hover` text,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=111 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_settings` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `general` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` text NOT NULL,
  `layers` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_woocommerce_api_keys` (
  `key_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `description` longtext COLLATE utf8mb4_unicode_ci,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` longtext,
  `attribute_type` varchar(200) NOT NULL,
  `attribute_orderby` varchar(200) NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `download_id` varchar(32) NOT NULL,
  `product_id` bigint(20) NOT NULL,
  `order_id` bigint(20) NOT NULL DEFAULT '0',
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `downloads_remaining` varchar(9) DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`,`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_order_items` (
  `order_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext NOT NULL,
  `order_item_type` varchar(200) NOT NULL DEFAULT '',
  `order_id` bigint(20) NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `location_code` varchar(255) NOT NULL,
  `tax_rate_id` bigint(20) NOT NULL,
  `location_type` varchar(40) NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) NOT NULL,
  `tax_rate_class` varchar(200) NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`),
  KEY `tax_rate_class` (`tax_rate_class`),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE `wp_woocommerce_termmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `woocommerce_term_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `woocommerce_term_id` (`woocommerce_term_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;


/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("2", "657", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-05 07:16:22", "2015-01-05 07:16:22", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "1");
INSERT INTO `wp_comments` VALUES("3", "657", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-05 07:18:41", "2015-01-05 07:18:41", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "", "2", "1");
INSERT INTO `wp_comments` VALUES("4", "657", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-09 03:04:19", "2015-01-09 03:04:19", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "", "3", "1");
INSERT INTO `wp_comments` VALUES("5", "635", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-09 08:43:09", "2015-01-09 08:43:09", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:34.0) Gecko/20100101 Firefox/34.0", "", "0", "1");
INSERT INTO `wp_comments` VALUES("6", "1332", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-26 09:24:02", "2015-01-26 09:24:02", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "1");
INSERT INTO `wp_comments` VALUES("7", "1332", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-26 09:24:54", "2015-01-26 09:24:54", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "1");
INSERT INTO `wp_comments` VALUES("8", "657", "admin", "admin@gmail.com", "", "117.6.8.85", "2015-01-26 09:25:06", "2015-01-26 09:25:06", "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", "0", "1", "Mozilla/5.0 (Windows NT 6.2; WOW64; rv:35.0) Gecko/20100101 Firefox/35.0", "", "0", "1");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("16", "20160930_mdealtheme", "57ee95838c3b47072160930164035", "20", "2016-09-30 16:42:30", "admin", "O:11:\"DUP_Package\":16:{s:2:\"ID\";i:16;s:4:\"Name\";s:19:\"20160930_mdealtheme\";s:4:\"Hash\";s:29:\"57ee95838c3b47072160930164035\";s:8:\"NameHash\";s:49:\"20160930_mdealtheme_57ee95838c3b47072160930164035\";s:7:\"Version\";s:6:\"0.5.28\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:39:\"E:/xampp/htdocs/mdeal2/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://localhost/mdeal2/wp-snapshots/\";s:8:\"ScanFile\";s:59:\"20160930_mdealtheme_57ee95838c3b47072160930164035_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:61:\"20160930_mdealtheme_57ee95838c3b47072160930164035_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:22:\"E:/xampp/htdocs/mdeal2\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20160930_mdealtheme\";s:4:\"Hash\";s:29:\"57ee95838c3b47072160930164035\";s:8:\"NameHash\";s:49:\"20160930_mdealtheme_57ee95838c3b47072160930164035\";s:7:\"Version\";s:6:\"0.5.28\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:39:\"E:/xampp/htdocs/mdeal2/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://localhost/mdeal2/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:63:\"20160930_mdealtheme_57ee95838c3b47072160930164035_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:45;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:62:\"20160930_mdealtheme_57ee95838c3b47072160930164035_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:60;s:8:\"Database\";r:73;}");

/* INSERT TABLE DATA: wp_eg_grids */
INSERT INTO `wp_eg_grids` VALUES("1", "Masonry Blog Jimmy Carter", "masonryblog_jimmycarter", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"16\",\"y-ratio\":\"9\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"30\",\"grid-padding\":[\"15\",\"30\",\"40\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"37\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"10\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"1\"},\"left\":{\"bottom-1\":\"0\"},\"right\":{\"bottom-1\":\"2\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("2", "Masonry Grid Ronald Reagan", "masonry_grid_ronald_reagan", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"on\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"on\",\"rows\":\"3\",\"load-more\":\"scroll\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"30\",\"grid-padding\":[\"25\",\"0\",\"30\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"38\",\"grid-animation\":\"horizontal-flip\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"10\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title,excerpt\",\"sorting-order-by-start\":\"date\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("3", "Even Grid Washington", "even_grid_washington", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"on\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"columns-advanced-rows-0\":[\"3\",\"4\",\"4\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"15\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"text-dark\",\"entry-skin\":\"1\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"30\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"35\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"50\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title\",\"sorting-order-by-start\":\"date\",\"sorting-order-type\":\"DESC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("4", "Even Grid Adams", "even_grid_adams", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"on\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"2\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"columns-advanced-rows-0\":[\"2\",\"2\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"columns-advanced-rows-1\":[\"4\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"25\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-dark\",\"entry-skin\":\"2\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date,title\",\"sorting-order-by-start\":\"title\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("5", "Even Grid Jefferson", "even_grid_jefferson", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"16\",\"y-ratio\":\"9\",\"columns-advanced\":\"on\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"3\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"columns-advanced-rows-0\":[\"5\",\"4\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"columns-advanced-rows-1\":[\"3\",\"2\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"4\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"10\",\"grid-padding\":[\"15\",\"30\",\"45\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"3\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("6", "Even Grid Madison", "even_grid_madison", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"post_tag_45,post_tag_36,essential_grid_category_28,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"category-relation\":\"OR\",\"additional-query\":\"\",\"selected_pages\":\"\",\"max_entries\":\"-1\",\"media-source-order\":[\"featured-image\"],\"default-image\":\"0\",\"image-source-type\":\"medium\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"content-push\":\"off\",\"x-ratio\":\"1\",\"y-ratio\":\"1\",\"rtl\":\"off\",\"use-cobbles-pattern\":\"off\",\"columns-advanced\":\"off\",\"columns-height\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"3\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"button\",\"load-more-text\":\"Load More\",\"load-more-show-number\":\"on\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"\",\"spacings\":\"0\",\"grid-padding\":[\"15\",\"0\",\"60\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"1\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"pagination-numbers\":\"smart\",\"pagination-scroll\":\"off\",\"pagination-scroll-offset\":\"0\",\"filter-arrows\":\"single\",\"filter-logic\":\"or\",\"filter-start\":\"\",\"filter-show-on\":\"hover\",\"filter-all-text\":\"Filter - All\",\"filter-listing\":\"list\",\"filter-dropdown-text\":\"Filter Categories\",\"filter-counter\":\"off\",\"filter-selected\":[\"essential_grid_category_28\",\"essential_grid_category_30\",\"essential_grid_category_31\",\"essential_grid_category_32\",\"post_tag_36\",\"post_tag_45\"],\"sort-by-text\":\"Sort By \",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-by-start-meta\":\"\",\"sorting-order-type\":\"ASC\",\"search-text\":\"Search...\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-exclude-media\":\"off\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"ajax-container-id\":\"ess-grid-ajax-container-\",\"ajax-container-position\":\"top\",\"ajax-scroll-onload\":\"on\",\"ajax-scrollto-offset\":\"0\",\"ajax-close-button\":\"off\",\"ajax-button-text\":\"Close\",\"ajax-nav-button\":\"off\",\"ajax-button-skin\":\"light\",\"ajax-button-type\":\"type1\",\"ajax-button-inner\":\"false\",\"ajax-button-h-pos\":\"r\",\"ajax-button-v-pos\":\"t\",\"ajax-container-pre\":\"\",\"ajax-container-post\":\"\",\"ajax-container-css\":\"\",\"ajax-callback\":\"\",\"ajax-callback-arg\":\"false\",\"ajax-css-url\":\"\",\"ajax-js-url\":\"\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"custom-javascript\":\"\",\"cookie-save-time\":\"30\",\"cookie-save-search\":\"off\",\"cookie-save-filter\":\"off\",\"cookie-save-pagination\":\"off\",\"css-id\":\"\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"1\"},\"left\":{\"bottom-1\":\"0\"},\"right\":{\"bottom-1\":\"2\"},\"filter\":{\"top-1\":\"0\"}}}", "[]", NULL, "2015-12-06 09:01:18");
INSERT INTO `wp_eg_grids` VALUES("7", "Even Grid Monroe", "even_grid_monroe", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_29,essential_grid_category_30\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"3\",\"3\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"4\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"#FFFFFF\",\"navigation-skin\":\"text-light\",\"entry-skin\":\"5\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"30\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date,title\",\"sorting-order-by-start\":\"date\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("8", "Even Grid Quincy", "even_grid_quincy", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_31\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"1\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"flat-light\",\"entry-skin\":\"6\",\"grid-animation\":\"horizontal-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"35\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"10\",\"right-margin-right\":\"10\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("9", "Even Grid Jackson", "even_grid_jackson", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"1\",\"y-ratio\":\"1\",\"columns-advanced\":\"on\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"2\",\"2\",\"1\",\"1\",\"1\"],\"rows-unlimited\":\"on\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"10\",\"load-more-amount\":\"5\",\"lazy-loading\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"10\",\"grid-padding\":[\"15\",\"30\",\"0\",\"30\"],\"main-background-color\":\"#FFFFFF\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"7\",\"grid-animation\":\"rotatescale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"35\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("10", "Even Grid VanBuren", "even_grid_vanburen", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"6\",\"4\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-dark\",\"entry-skin\":\"8\",\"grid-animation\":\"vertical-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"poster-source-order\":[\"featured-image\"],\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"1\"},\"left\":{\"bottom-1\":\"0\"},\"right\":{\"bottom-1\":\"2\"},\"filter\":{\"top-1\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("11", "Even Grid HenryHarrison", "even_grid_henryharrison", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"]}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"4\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"#FFFFFF\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"9\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"0\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\"}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("12", "Even Grid GeorgeBush", "even_grid_georgebush", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"]}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"2\",\"2\",\"2\",\"1\",\"1\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"flat-dark\",\"entry-skin\":\"39\",\"grid-animation\":\"horizontal-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"30\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"title\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"left\":{\"top-1\":\"0\"},\"right\":{\"top-1\":\"2\"},\"filter\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("13", "Price Tables Ulysses S. Grant", "price_tables_one", "{\"source-type\":\"post\",\"post_types\":\"portfolio\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"]}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"1\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"\",\"spacings\":\"30\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"34\",\"grid-animation\":\"horizontal-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"30\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("14", "Price Tables Two", "price_tables_two", "{\"source-type\":\"post\",\"post_types\":\"portfolio\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"]}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"\",\"spacings\":\"30\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"35\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"hide-markup-before-load\":\"on\"}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("15", "Price Table Ulysses 2", "price_tables_one_2", "{\"source-type\":\"post\",\"post_types\":\"portfolio\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"]}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"1\",\"y-ratio\":\"1\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"1\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"\",\"spacings\":\"30\",\"grid-padding\":[\"0\",\"30\",\"0\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"flat-dark\",\"entry-skin\":\"34\",\"grid-animation\":\"horizontal-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("16", "Even Grid Quincy 2", "even_grid_quincy_2", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"6\",\"5\",\"4\",\"3\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"flat-dark\",\"entry-skin\":\"6\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"35\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"10\",\"right-margin-right\":\"10\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("17", "Even Grid Roosevelt", "even_grid_roosevelt", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullscreen\",\"fullscreen-offset-container\":\".allwrapper header\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"4\",\"3\",\"3\",\"3\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"4\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"flat-light\",\"entry-skin\":\"25\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"10\",\"right-margin-right\":\"10\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"all\",\"lightbox-type\":\"inside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("18", "Masonry Grid Garfield", "masonry_grid_garfield", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"on\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"6\",\"load-more-amount\":\"3\",\"lazy-loading\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"30\",\"grid-padding\":[\"0\",\"0\",\"35\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"20\",\"grid-animation\":\"fall\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"10\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title,excerpt\",\"sorting-order-by-start\":\"date\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"lightbox-mode\":\"single\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"1\"},\"left\":{\"bottom-1\":\"0\"},\"right\":{\"bottom-1\":\"2\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("19", "Even Grid Cleveland", "even_grid_cleveland", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"30\",\"100\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"22\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"inside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("20", "Even Grid Johnson", "even_grid_johnson", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"1\",\"y-ratio\":\"1\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"17\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\"}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("21", "Price Tables Ford", "price_tables_ford", "{\"source-type\":\"post\",\"post_types\":\"portfolio\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"1\",\"y-ratio\":\"1\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"20\",\"grid-padding\":[\"0\",\"20\",\"0\",\"20\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"36\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"20\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"inside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("22", "Demo Grid", "demo_grid", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"20\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"40\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"rand\",\"sorting-order-type\":\"ASC\",\"lightbox-mode\":\"single\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("23", "More Examples", "more_examples", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"on\",\"columns-width\":[\"2000\",\"1400\",\"1170\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"8\",\"6\",\"4\",\"4\",\"3\",\"3\",\"2\"],\"rows-unlimited\":\"off\",\"rows\":\"1\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"20\",\"grid-padding\":[\"0\",\"30\",\"0\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"flat-dark\",\"entry-skin\":\"41\",\"grid-animation\":\"horizontal-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"-5\",\"right-margin-right\":\"-5\",\"module-spacings\":\"0\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"rand\",\"sorting-order-type\":\"ASC\",\"lightbox-mode\":\"single\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"3\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "[]", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("24", "Masonry Grid Herbert Hoover", "masonry_grid_hoover", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"vimeo\",\"youtube\",\"html5\",\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"3\",\"3\",\"3\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"30\",\"grid-padding\":[\"0\",\"30\",\"0\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"30\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"10\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"40\",\"filter-arrows\":\"multi\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title,excerpt\",\"sorting-order-by-start\":\"date\",\"sorting-order-type\":\"ASC\",\"poster-source-order\":[\"alternate-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("25", "Clients Grid", "clients_grid", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"4\",\"3\",\"3\",\"3\",\"2\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"33\",\"grid-animation\":\"horizontal-slide\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"35\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"10\",\"right-margin-right\":\"10\",\"module-spacings\":\"0\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"left\":{\"left\":\"0\"},\"right\":{\"right\":\"0\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("26", "Clients Grid 2", "clients_grid_2", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"4\",\"4\",\"3\",\"3\",\"3\",\"2\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"42\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\"}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("27", "Client Grid 3", "client_grid_3", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"2000\",\"1400\",\"1170\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"3\",\"3\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"43\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"left\":{\"top-1\":\"0\"},\"right\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("28", "Media Blog McKinley", "media_blog_mckinley", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"vimeo\",\"youtube\",\"html5\",\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"4\",\"3\",\"3\",\"3\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"20\",\"grid-padding\":[\"0\",\"50\",\"0\",\"50\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"24\",\"grid-animation\":\"rotatescale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"20\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title,excerpt\",\"sorting-order-by-start\":\"title\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"poster-source-order\":[\"alternate-image\"],\"lb-source-order\":[\"featured-image\"],\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("29", "Media Grid HowardTaft", "media_grid_howardtaft", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"vimeo\",\"youtube\",\"html5\",\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"16\",\"y-ratio\":\"9\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"3\",\"3\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"on\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"9\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"30\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-dark\",\"entry-skin\":\"26\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"Filter - All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"poster-source-order\":[\"alternate-image\",\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\"}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("30", "WooCommerce 1", "woo1", "{\"source-type\":\"post\",\"post_types\":\"product,product_variation\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"3\",\"3\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"20\",\"grid-padding\":[\"0\",\"30\",\"0\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"21\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"20\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"meta_num__regular_price,meta_num__sale_price,meta_num_total_sales,meta__featured,meta__sku,meta_num_stock,date,title\",\"sorting-order-by-start\":\"title\",\"sorting-order-type\":\"ASC\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"cart\":{\"top-1\":\"2\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("31", "WooCommerce 2", "woo2", "{\"source-type\":\"post\",\"post_types\":\"product,product_variation\",\"post_category\":\"\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"4\",\"3\",\"3\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"20\",\"grid-padding\":[\"0\",\"0\",\"90\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-light\",\"entry-skin\":\"44\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"meta_num__regular_price,meta_num__sale_price,meta_num_total_sales,meta__featured\",\"sorting-order-by-start\":\"meta__featured\",\"sorting-order-type\":\"ASC\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"filterpage\",\"lightbox-type\":\"outside\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"},\"cart\":{\"top-1\":\"2\"},\"sorting\":{\"top-1\":\"1\"}}}", "", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("32", "WoodrowWilson", "woodrowwilson", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"cobbles\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"4\",\"3\",\"3\",\"3\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"none\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"0\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"27\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"40\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"0\"},\"filter\":{\"top-1\":\"0\"}}}", "[]", NULL, NULL);
INSERT INTO `wp_eg_grids` VALUES("33", "Grid 1", "grid-1", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"essential_grid_category_28,essential_grid_category_29,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"selected_pages\":\"\",\"media-source-order\":[\"featured-image\"],\"image-source-type\":\"full\"}", "{\"layout-sizing\":\"fullwidth\",\"fullscreen-offset-container\":\"\",\"layout\":\"masonry\",\"x-ratio\":\"16\",\"y-ratio\":\"9\",\"columns-advanced\":\"off\",\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"5\",\"4\",\"2\",\"2\",\"2\",\"2\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"3\",\"load-more\":\"button\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"Clear\",\"spacings\":\"30\",\"grid-padding\":[\"15\",\"30\",\"40\",\"30\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"simple-dark\",\"entry-skin\":\"37\",\"grid-animation\":\"scale\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"35\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"10\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"30\",\"filter-arrows\":\"single\",\"filter-all-text\":\"All\",\"sorting-order-by\":\"date,title\",\"sorting-order-by-start\":\"none\",\"sorting-order-type\":\"ASC\",\"cart-special-link-type\":\"woocommerce\",\"cart-link\":\"\",\"cart-link-target\":\"_blank\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"on\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"1\"},\"left\":{\"bottom-1\":\"0\"},\"right\":{\"bottom-1\":\"2\"},\"filter\":{\"top-1\":\"0\"},\"sorting\":{\"top-1\":\"1\"}}}", "", "", "0000-00-00 00:00:00");
INSERT INTO `wp_eg_grids` VALUES("34", "Even Grid Madison 2 column", "even_grid_madison_2_column", "{\"source-type\":\"post\",\"post_types\":\"essential_grid\",\"post_category\":\"post_tag_37,post_tag_36,post_tag_41,essential_grid_category_28,essential_grid_category_30,essential_grid_category_31,essential_grid_category_32\",\"category-relation\":\"OR\",\"additional-query\":\"\",\"selected_pages\":\"\",\"max_entries\":\"-1\",\"media-source-order\":[\"featured-image\"],\"default-image\":\"0\",\"image-source-type\":\"medium\"}", "{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"content-push\":\"off\",\"x-ratio\":\"1\",\"y-ratio\":\"1\",\"rtl\":\"off\",\"use-cobbles-pattern\":\"off\",\"columns-advanced\":\"off\",\"columns-height\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"columns\":[\"2\",\"2\",\"2\",\"2\",\"2\",\"1\",\"1\"],\"rows-unlimited\":\"off\",\"rows\":\"2\",\"load-more\":\"none\",\"load-more-text\":\"Load More\",\"load-more-show-number\":\"on\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-load-color\":\"#FFFFFF\",\"0\":\"\",\"spacings\":\"0\",\"grid-padding\":[\"15\",\"0\",\"60\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"entry-skin\":\"1\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"hover-animation-delay\":\"1\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"pagination-numbers\":\"smart\",\"pagination-scroll\":\"off\",\"pagination-scroll-offset\":\"0\",\"filter-arrows\":\"single\",\"filter-logic\":\"or\",\"filter-start\":\"\",\"filter-show-on\":\"hover\",\"filter-all-text\":\"Filter - All\",\"filter-listing\":\"list\",\"filter-dropdown-text\":\"Filter Categories\",\"filter-counter\":\"off\",\"filter-selected\":[\"post_tag_37\",\"essential_grid_category_32\",\"essential_grid_category_31\",\"essential_grid_category_30\",\"essential_grid_category_28\",\"post_tag_41\",\"post_tag_36\"],\"sort-by-text\":\"Sort By \",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-by-start-meta\":\"\",\"sorting-order-type\":\"ASC\",\"search-text\":\"Search...\",\"poster-source-order\":[\"featured-image\"],\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-exclude-media\":\"off\",\"lightbox-type\":\"null\",\"lightbox-position\":\"bottom\",\"lightbox-twitter\":\"off\",\"lightbox-facebook\":\"off\",\"lbox-inpadding\":[\"0\",\"0\",\"0\",\"0\"],\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"normal\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"normal\",\"lightbox-arrows\":\"on\",\"lightbox-thumbs\":\"off\",\"lbox-thumb-w\":\"50\",\"lbox-thumb-h\":\"50\",\"aj-source-order\":[\"post-content\"],\"ajax-container-id\":\"ess-grid-ajax-container-\",\"ajax-container-position\":\"top\",\"ajax-scroll-onload\":\"on\",\"ajax-scrollto-offset\":\"0\",\"ajax-close-button\":\"off\",\"ajax-button-text\":\"Close\",\"ajax-nav-button\":\"off\",\"ajax-button-skin\":\"light\",\"ajax-button-type\":\"type1\",\"ajax-button-inner\":\"false\",\"ajax-button-h-pos\":\"r\",\"ajax-button-v-pos\":\"t\",\"ajax-container-pre\":\"\",\"ajax-container-post\":\"\",\"ajax-container-css\":\"\",\"ajax-callback\":\"\",\"ajax-callback-arg\":\"false\",\"ajax-css-url\":\"\",\"ajax-js-url\":\"\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"hide-markup-before-load\":\"off\",\"custom-javascript\":\"\",\"cookie-save-time\":\"30\",\"cookie-save-search\":\"off\",\"cookie-save-filter\":\"off\",\"cookie-save-pagination\":\"off\",\"css-id\":\"\",\"navigation-layout\":{\"pagination\":{\"bottom-1\":\"1\"},\"left\":{\"bottom-1\":\"0\"},\"right\":{\"bottom-1\":\"2\"},\"filter\":{\"top-2\":\"0\"}}}", "[]", NULL, "2015-12-06 14:29:25");

/* INSERT TABLE DATA: wp_eg_item_skins */
INSERT INTO `wp_eg_item_skins` VALUES("1", "Washington", "washington", "{\"eg-item-skin-element-last-id\":\"9\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#000000\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"65\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#3f424a\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"50\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\"\",\"css-hover\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"50\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"css\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css-hover\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"source-post\":\"title\"}},null,{\"id\":\"8\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"9\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("2", "Adams", "adams", "{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#89af72\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"transparent\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"10\",\"cover-animation-center\":\"flipleft\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"turnout\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\".eg-adams-element-0{}\",\"css-hover\":\".eg-adams-element-0{}\",\"transition-type\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\".eg-adams-element-3{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-3{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-adams-element-5{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-5{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"8\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("3", "Jefferson", "jefferson", "{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#e33a0c\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fliphorizontal\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"fliphorizontalout\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"46\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},null,{\"id\":\"3\",\"order\":3,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"17\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"60\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},null,{\"id\":\"5\",\"order\":6,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"1\",\"5\",\"1\",\"5\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"70\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\"&nbsp; &nbsp;\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"8\",\"order\":4,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("4", "Madison", "madison", "{\"eg-item-skin-element-last-id\":\"7\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#585c67\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#585c67\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"flipvertical\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"flipverticalout\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"19\",\"1\":\"19\",\"2\":\"19\",\"3\":\"19\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"19\",\"1\":\"19\",\"2\":\"19\",\"3\":\"19\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"35\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"35\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"45\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\"}},{\"id\":\"6\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"7\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("5", "Monroe", "monroe", "{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#0a0a0a\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"50\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"out\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"none\",\"cover-animation-center-type\":\"out\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"out\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"none\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"30\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"30\",\"3\":\"0\"},\"padding\":{\"0\":\"3\",\"1\":\"15\",\"2\":\"2\",\"3\":\"15\"},\"background-color\":\"#89af72\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#ffffff\",\"shadow-alpha\":\"0\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"3\",\"3\":\"0\"},\"border-radius\":{\"0\":\"3\",\"1\":\"3\",\"2\":\"3\",\"3\":\"3\"},\"border-radius-unit\":\"px\",\"border-color\":\"#617f52\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"30\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#9bc184\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"0\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"3\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"3\",\"1\":\"3\",\"2\":\"3\",\"3\":\"3\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#617f52\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"0\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"Read More\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"24\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"4\",\"1\":\"12\",\"2\":\"3\",\"3\":\"12\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"0\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"20\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"out\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"8\",\"order\":\"0\",\"container\":\"tl\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"24\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"30\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"3\",\"1\":\"12\",\"2\":\"4\",\"3\":\"12\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"0\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"20\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"transition-type\":\"\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"date\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("6", "Quincy", "quincy", "{\"eg-item-skin-element-last-id\":\"6\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#2d3039\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#2d3039\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"pressback\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"24\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"10\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#2d3039\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"24\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#2d3039\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"30\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"24\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"10\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#2d3039\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"24\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#2d3039\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},null,{\"id\":\"5\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"6\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("7", "Jackson", "jackson", "{\"eg-item-skin-element-last-id\":\"7\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#eeeeee\",\"full-padding\":[\"5\",\"5\",\"5\",\"5\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"zoomback\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#f5f5f5\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#eeeeee\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomback\",\"delay\":\"5\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-jackson-element-0{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-jackson-element-0{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#f5f5f5\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#eeeeee\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomback\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"18\",\"line-height\":\"20\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"18\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"skewright\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#888888\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"skewleft\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-post\":\"cat_list\"}},{\"id\":\"6\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"7\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("8", "VanBuren", "vanburen", "{\"eg-item-skin-element-last-id\":\"3\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#0a0606\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#363839\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"flipup\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"15\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"20\",\"2\":\"0\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flyleft\",\"delay\":\"5\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},null,{\"id\":\"2\",\"order\":3,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flyright\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"date\"}},{\"id\":\"3\",\"order\":1,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("9", "HenryHarrison", "henryharrison", "{\"eg-item-skin-element-last-id\":\"5\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#31a5cb\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"1\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"30\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"10\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"20\",\"2\":\"0\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"0\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"5\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},null,{\"id\":\"2\",\"order\":3,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"20\",\"line-height\":\"27\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"0\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"20\",\"line-height-hover\":\"27\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"normal\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"0\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rotatescale\",\"delay\":\"5\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-plus\"}},null,{\"id\":\"5\",\"order\":1,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("10", "Tyler", "tyler", "{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"20\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-unlink\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"title\",\"transition-type\":\"\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"excerpt\",\"transition-type\":\"\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"8\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("11", "Polk", "polk", "{\"eg-item-skin-element-last-id\":\"6\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"95\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rotatescale\",\"delay\":\"20\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rotatescale\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-unlink\"}},{\"id\":\"2\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"46\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"title\",\"transition-type\":\"\"}},{\"id\":\"3\",\"order\":\"5\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"57\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"excerpt\",\"transition-type\":\"\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("12", "Taylor", "taylor", "{\"eg-item-skin-element-last-id\":\"6\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"flipdown\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-unlink\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"20\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"title\",\"transition-type\":\"\"}},{\"id\":\"3\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"excerpt\",\"transition-type\":\"\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("13", "Fillmore", "fillmore", "{\"eg-item-skin-element-last-id\":\"7\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#363839\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-fillmore-element-0{cursor:pointer}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-fillmore-element-0{cursor:pointer}\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"13\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"transition-type\":\"out\",\"tag-type\":\"div\",\"align\":\"c_c\",\"margin-unit\":\"px\",\"source-post\":\"date\"}},{\"id\":\"2\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#363839\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-fillmore-element-1{ cursor:pointer}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-fillmore-element-1{cursor:pointer}\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-icon\":\"eg-icon-unlink\"}},{\"id\":\"3\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"20\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"title\",\"transition-type\":\"\"}},{\"id\":\"4\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"fade\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"excerpt\",\"transition-type\":\"\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("14", "Pierce", "pierce", "{\"eg-item-skin-element-last-id\":\"6\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomback\",\"delay\":\"20\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-pierce-element-0{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-pierce-element-0{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-pierce-element-1{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-pierce-element-1{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-unlink\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"20\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"title\",\"transition-type\":\"\"}},{\"id\":\"3\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"source-post\":\"excerpt\",\"tag-type\":\"div\",\"align\":\"c_c\",\"css-hover\":\"\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("15", "Buchanan", "buchanan", "{\"eg-item-skin-element-last-id\":\"6\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"slidedown\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rollright\",\"delay\":\"20\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-link\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"20\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"21\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"title\",\"transition-type\":\"\"}},{\"id\":\"3\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"40\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"source-post\":\"excerpt\",\"transition-type\":\"\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("16", "Lincoln", "lincoln", "{\"eg-item-skin-element-last-id\":\"14\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"10\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"turnout\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"1\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-link\"}},{\"id\":\"2\",\"order\":\"1\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"1\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-link-ext\"}},{\"id\":\"3\",\"order\":\"2\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"url\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-mail\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("17", "Johnson", "johnson", "{\"eg-item-skin-element-last-id\":\"12\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#008e85\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"10\",\"cover-animation-center\":\"covergrowup\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"40\",\"2\":\"0\",\"3\":\"40\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\".eg-johnson-element-0{}\",\"css-hover\":\".eg-johnson-element-0{}\",\"tag-type\":\"div\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":0,\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"1\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"30\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"css\":\".eg-johnson-element-1{}\",\"css-hover\":\".eg-johnson-element-1{}\",\"tag-type\":\"div\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},null,{\"id\":\"3\",\"order\":1,\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"1\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"20\",\"link-type\":\"embedded_video\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"css\":\".eg-johnson-element-3{}\",\"css-hover\":\".eg-johnson-element-3{}\",\"tag-type\":\"div\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-videocam\"}},{\"id\":\"4\",\"order\":2,\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"1\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"25\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"css\":\"\",\"css-hover\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}},{\"id\":\"5\",\"order\":2,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"cat_list\"}},{\"id\":\"12\",\"order\":1,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("18", "Grant", "grant", "{\"eg-item-skin-element-last-id\":\"22\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#363839\",\"font-family\":\"\",\"font-weight\":\"600\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"20\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-grant-element-0{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-grant-element-0{}\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":0,\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"right\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#000000\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"40\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link-ext\"}},{\"id\":\"2\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"600\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#000000\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-text\":\"READ MORE\"}},{\"id\":\"3\",\"order\":1,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#aaaaaa\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"date\"}},null,null,{\"id\":\"6\",\"order\":3,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#777777\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-post\":\"excerpt\",\"transition-type\":\"\"}},{\"id\":\"22\",\"order\":2,\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("19", "Hayes", "hayes", "{\"eg-item-skin-element-last-id\":\"23\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#363839\",\"font-family\":\"\",\"font-weight\":\"600\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"20\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#aaaaaa\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"1\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#aaaaaa\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"date\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#aaaaaa\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"10\"},\"padding\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#aaaaaa\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"cat_list\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("20", "Garfield", "garfield", "{\"eg-item-skin-element-last-id\":\"22\",\"choose-layout\":\"masonry\",\"show-content\":\"top\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#000000\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"transparent\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"-1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#363839\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"20\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"right\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"13\",\"13\",\"13\",\"13\"],\"background-color\":\"#000000\",\"bg-alpha\":\"25\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link-ext\"}},{\"id\":\"2\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#000000\",\"bg-alpha\":\"25\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"READ MORE\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"16\",\"color\":\"#777777\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"10\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"1\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"16\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"1\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"date\"}},{\"id\":\"4\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"16\",\"color\":\"#777\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"10\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"16\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"cat_list\"}},{\"id\":\"22\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"6\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#333333\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"words\",\"limit-num\":\"15\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("21", "Arthur", "arthur", "{\"eg-item-skin-element-last-id\":\"31\",\"choose-layout\":\"masonry\",\"show-content\":\"top\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#89af72\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"1\",\"1\",\"1\",\"1\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"solid\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#f5f5f5\",\"content-padding\":[\"30\",\"30\",\"25\",\"30\"],\"content-border\":[\"0\",\"0\",\"1\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"solid\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"-1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"22\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"20\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"28\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"woocommerce\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"4\",\"3\":\"10\"},\"background-color\":\"#000000\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-woocommerce\":\"wc_add_to_cart_button\"}},{\"id\":\"25\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"woocommerce\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"2\",\"7\",\"1\",\"7\"],\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"source-woocommerce\":\"wc_full_price\"}},{\"id\":\"26\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"1\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"woocommerce\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#aaaaaa\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#aaaaaa\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-woocommerce\":\"wc_categories\"}},{\"id\":\"31\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"30\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"woocommerce\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"source-woocommerce\":\"wc_star_rating\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("22", "Cleveland", "cleveland", "{\"eg-item-skin-element-last-id\":\"22\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#000000\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#333333\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#333333\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"20\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-cleveland-element-0{}\",\"font-size-hover\":\"20\",\"line-height-hover\":\"25\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-cleveland-element-0{}\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":0,\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"right\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"13\",\"1\":\"13\",\"2\":\"13\",\"3\":\"13\"},\"background-color\":\"#000000\",\"bg-alpha\":\"25\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"30\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link-ext\"}},{\"id\":\"2\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"#000000\",\"bg-alpha\":\"25\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"READ MORE\"}},{\"id\":\"3\",\"order\":1,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"16\",\"color\":\"#aaaaaa\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"0\",\"10\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"1\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#555555\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"16\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"1\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#555555\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-post\":\"date\"}},{\"id\":\"4\",\"order\":2,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"16\",\"color\":\"#aaaaaa\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"16\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"cat_list\"}},null,{\"id\":\"6\",\"order\":5,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#eeeeee\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"words\",\"limit-num\":\"15\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\"}},{\"id\":\"22\",\"order\":4,\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("23", "Harrison", "harrison", "{\"eg-item-skin-element-last-id\":\"24\",\"choose-layout\":\"masonry\",\"show-content\":\"top\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"85\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#363839\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"-1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"500\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"20\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#aaaaaa\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"10\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"1\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#aaaaaa\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-post\":\"date\",\"transition-type\":\"\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#aaaaaa\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"10\"},\"padding\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#aaaaaa\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"cat_list\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("24", "McKinley", "mckinley", "{\"eg-item-skin-element-last-id\":\"30\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#13c0df\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"65\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"1\",\"10\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"slide\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#363839\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"10\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"20\",\"line-height-hover\":\"25\",\"color-hover\":\"#13c0df\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"25\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"3\",\"3\":\"10\"},\"background-color\":\"#000000\",\"bg-alpha\":\"15\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"900\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"50\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slide\",\"delay\":\"20\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"true\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"SHOW IMAGE\"}},{\"id\":\"28\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"5\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"3\",\"3\":\"10\"},\"background-color\":\"#000000\",\"bg-alpha\":\"15\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"900\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"50\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"transition\":\"slide\",\"transition-type\":\"\",\"delay\":\"20\",\"link-type\":\"embedded_video\",\"url-link\":\"\",\"meta-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"PLAY VIDEO\"}},{\"id\":\"3\",\"order\":1,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#aaaaaa\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e5e5e5\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\"}},null,{\"id\":\"6\",\"order\":3,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"words\",\"limit-num\":\"15\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\"}},null,{\"id\":\"29\",\"order\":2,\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"30\",\"order\":4,\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("25", "Roosevelt", "roosevelt", "{\"eg-item-skin-element-last-id\":\"3\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#222222\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"50\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#333333\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#333333\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"zoomback\",\"cover-group-animation\":\"none\",\"media-animation\":\"shifttotop\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"20\",\"1\":\"20\",\"2\":\"20\",\"3\":\"20\"},\"background-color\":\"#333333\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-roosevelt-element-0{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-roosevelt-element-0{}\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"9\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"2\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"10\",\"2\":\"60\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#000000\",\"bg-alpha\":\"50\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"75\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"20\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"css\":\".eg-roosevelt-element-2{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-roosevelt-element-2{}\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#000000\",\"bg-alpha\":\"50\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"75\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("26", "HowardTaft", "howardtaft", "{\"eg-item-skin-element-last-id\":\"14\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#6f212c\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#000000\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#000000\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"slide\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"900\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-howardtaft-element-0{letter-spacing:1px;}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-howardtaft-element-0{}\",\"hideunder\":\"0\",\"transition\":\"slide\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"css-hover\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"css\":\".eg-howardtaft-element-2{ min-width:50px}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-howardtaft-element-2{}\",\"hideunder\":\"0\",\"transition\":\"zoomback\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"absolute-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"3\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"css\":\"\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"css-hover\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"6\",\"order\":\"6\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"200\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"7\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slide\",\"delay\":\"35\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"hide-on-video\":\"true\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"7\",\"order\":\"7\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#000000\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"7\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"2\",\"1\":\"2\",\"2\":\"2\",\"3\":\"2\"},\"border-radius-hover\":{\"0\":\"60\",\"1\":\"60\",\"2\":\"60\",\"3\":\"60\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slide\",\"delay\":\"35\",\"link-type\":\"embedded_video\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-play\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("27", "WoodrowWilson", "woodrowwilson", "{\"eg-item-skin-element-last-id\":\"14\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"20\",\"2\":\"0\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"15\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"css-hover\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"3\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#89af72\",\"border-style\":\"solid\",\"css\":\".eg-howardtaft-element-2{ min-width:50px}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-howardtaft-element-2{}\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"3\",\"order\":\"3\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"css\":\"\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"css-hover\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"4\",\"order\":\"4\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"22\",\"color\":\"#555555\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\", \",\"limit-type\":\"none\",\"limit-num\":\"10\",\"hide-on-video\":\"\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"cat_list\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("28", "Harding", "harding", "{\"eg-item-skin-element-last-id\":\"17\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"0\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Droid+Serif:400,700\",\"Open+Sans:400,600,700,800\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"25\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"40\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#444444\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"500\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#363839\",\"font-family-hover\":\"\",\"font-weight-hover\":\"600\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-text\":\"Frontend Developer\"}},{\"id\":\"2\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"3\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#000000\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"4\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"5\",\"order\":\"6\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#555555\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"50\",\"source-post\":\"excerpt\"}},{\"id\":\"6\",\"order\":\"7\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("29", "Coolidge", "coolidge", "{\"eg-item-skin-element-last-id\":\"19\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"1\",\"1\",\"1\",\"1\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"solid\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"15\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Droid+Serif:400,700\",\"Open+Sans:400,600,700,800\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"33\",\"line-height\":\"25\",\"color\":\"#363839\",\"font-family\":\"\",\"font-weight\":\"600\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-text\":\"<i class=\\\"eg-icon-tools\\\"><\\/i>\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"19\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"source-post\":\"title\"}},{\"id\":\"2\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-text\":\"LINE-BREAK\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\"}},{\"id\":\"3\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#000000\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"4\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"5\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#555555\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"40\",\"source-post\":\"excerpt\"}},{\"id\":\"6\",\"order\":\"6\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"7\",\"order\":\"7\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"14\",\"color\":\"#40dc8d\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"20\",\"0\",\"0\",\"-15\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#363839\",\"font-family-hover\":\"\",\"font-weight-hover\":\"600\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-text\":\"<i class=\\\"eg-icon-angle-right\\\"><\\/i> Learn More\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("30", "Herbert Hoover", "herbert-hoover", "{\"eg-item-skin-element-last-id\":\"25\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"0\",\"1\",\"1\",\"1\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"solid\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"0\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"25\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"15\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"source-separate\":\",\",\"hide-on-video\":\"\",\"source-post\":\"title\"}},{\"id\":\"24\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#000000\",\"bg-alpha\":\"50\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"75\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit-hover\":\"%\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"fade\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"true\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#444444\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#aaaaaa\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\", \",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\"}},{\"id\":\"25\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"5\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"#000000\",\"bg-alpha\":\"50\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"50\",\"50\",\"50\",\"50\"],\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"75\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"50\",\"50\",\"50\",\"50\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"fade\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"embedded_video\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-play\"}},{\"id\":\"10\",\"order\":\"10\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-num\":\"10\",\"limit-type\":\"none\",\"enable-hover\":\"on\",\"font-size\":\"22\",\"line-height\":\"7\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"25\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"22\",\"line-height-hover\":\"7\",\"color-hover\":\"#c32524\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"url\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-pinterest\",\"link-type-url\":\"#\"}},{\"id\":\"3\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"4\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#000000\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"5\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"6\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#555555\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"15\",\"source-separate\":\",\",\"source-post\":\"excerpt\"}},{\"id\":\"7\",\"order\":\"6\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"8\",\"order\":\"7\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-num\":\"10\",\"limit-type\":\"none\",\"enable-hover\":\"on\",\"font-size\":\"22\",\"line-height\":\"7\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"25\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"22\",\"line-height-hover\":\"7\",\"color-hover\":\"#4672b3\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"url\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-facebook-1\",\"link-type-url\":\"#\"}},{\"id\":\"9\",\"order\":\"8\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-num\":\"10\",\"limit-type\":\"none\",\"enable-hover\":\"on\",\"font-size\":\"22\",\"line-height\":\"7\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"25\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"22\",\"line-height-hover\":\"7\",\"color-hover\":\"#099bcc\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"url\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-twitter-1\",\"link-type-url\":\"#\"}},{\"id\":\"2\",\"order\":\"9\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-num\":\"10\",\"limit-type\":\"none\",\"enable-hover\":\"on\",\"font-size\":\"22\",\"line-height\":\"7\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"25\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"22\",\"line-height-hover\":\"7\",\"color-hover\":\"#da4a38\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"falldown\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"url\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-gplus-1\",\"link-type-url\":\"#\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("31", "Eisenhower", "eisenhower", "{\"eg-item-skin-element-last-id\":\"24\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"20\",\"20\",\"20\",\"20\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"5\",\"5\",\"5\",\"5\"],\"full-border-color\":\"#606060\",\"full-border-style\":\"solid\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"0\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"15\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Droid+Serif:400,700\",\"Open+Sans:400,600,700,800\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"19\",\"color\":\"#000000\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"source-separate\":\",\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"15\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#000000\",\"bg-alpha\":\"85\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rollright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-separate\":\",\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"2\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-text\":\"LINE-BREAK\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"17\",\"2\":\"17\",\"3\":\"17\"},\"background-color\":\"#000000\",\"bg-alpha\":\"85\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit-hover\":\"%\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"18\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-separate\":\",\",\"source-icon\":\"eg-icon-forward\"}},{\"id\":\"4\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#40dc8d\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"5\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"6\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#555555\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"5\",\"source-post\":\"cat_list\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("32", "J.F.Kennedy", "j-f-kennedy", "{\"eg-item-skin-element-last-id\":\"24\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#111111\",\"full-padding\":[\"20\",\"20\",\"20\",\"20\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"5\",\"5\",\"5\",\"5\"],\"full-border-color\":\"#606060\",\"full-border-style\":\"solid\",\"content-bg-color\":\"#111111\",\"content-padding\":[\"30\",\"30\",\"0\",\"30\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"15\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Droid+Serif:400,700\",\"Open+Sans:400,600,700,800\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"19\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"source-separate\":\",\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"15\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"19\",\"1\":\"19\",\"2\":\"19\",\"3\":\"19\"},\"background-color\":\"#000000\",\"bg-alpha\":\"85\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rollright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-separate\":\",\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"2\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-text\":\"LINE-BREAK\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"19\",\"1\":\"19\",\"2\":\"19\",\"3\":\"19\"},\"background-color\":\"#000000\",\"bg-alpha\":\"85\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"19\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"50\",\"1\":\"50\",\"2\":\"50\",\"3\":\"50\"},\"border-radius-unit-hover\":\"%\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rollleft\",\"delay\":\"18\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-separate\":\",\",\"source-icon\":\"eg-icon-forward\"}},{\"id\":\"4\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#40dc8d\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"5\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"6\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#888888\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"5\",\"source-post\":\"cat_list\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("33", "Lyndon Johnson", "lyndon-johnson", "{\"eg-item-skin-element-last-id\":\"2\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#000000\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"covergrowup\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"out\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"<img src=\\\"%eg-clients-icon%\\\" \\/>\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("34", "Ulysses S. Grant", "ulysses-s-grant", "{\"eg-item-skin-element-last-id\":\"11\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#f5f5f5\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"1\",\"1\",\"1\",\"1\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"solid\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#f5f5f5\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Open+Sans:400\",\"Raleway:700,800,900\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"50\",\"line-height\":\"50\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"80\",\"1\":\"0\",\"2\":\"-6\",\"3\":\"0\"},\"padding\":{\"0\":\"1\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"#000000\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"out\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"meta\",\"source-meta\":\"eg-pricetable-price\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#363839\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"30\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"title\"}},{\"id\":\"2\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"22\",\"color\":\"#999999\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"20\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"5\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"excerpt\"}},{\"id\":\"4\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"top\":\"0\",\"top-unit-hover\":\"px\",\"right\":\"0\",\"right-unit-hover\":\"px\",\"bottom\":\"0\",\"bottom-unit-hover\":\"px\",\"left\":\"0\",\"left-unit-hover\":\"px\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"5\",\"0\",\"5\"],\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"transition-type\":\"out\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"SHIPPING INCL.\"}},{\"id\":\"5\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"20\",\"2\":\"17\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"1\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"meta\",\"source-meta\":\"eg-pricetable-line1\"}},{\"id\":\"6\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"20\",\"2\":\"17\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"1\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"meta\",\"source-meta\":\"eg-pricetable-line2\"}},{\"id\":\"7\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"20\",\"2\":\"17\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"1\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"meta\",\"source-meta\":\"eg-pricetable-line3\"}},{\"id\":\"8\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"17\",\"1\":\"20\",\"2\":\"17\",\"3\":\"20\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"1\",\"1\":\"0\",\"2\":\"1\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"meta\",\"source-meta\":\"eg-pricetable-line4\"}},{\"id\":\"9\",\"order\":\"6\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"top\":\"0\",\"top-unit-hover\":\"px\",\"right\":\"0\",\"right-unit-hover\":\"px\",\"bottom\":\"0\",\"bottom-unit-hover\":\"px\",\"left\":\"0\",\"left-unit-hover\":\"px\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"20\",\"1\":\"0\",\"2\":\"15\",\"3\":\"0\"},\"padding\":{\"0\":\"8\",\"1\":\"25\",\"2\":\"8\",\"3\":\"25\"},\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"hideunder\":\"0\",\"transition\":\"skewright\",\"transition-type\":\"\",\"delay\":\"34\",\"link-type\":\"url\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-separate\":\",\",\"source-text\":\"BUY NOW\"}},{\"id\":\"11\",\"order\":\"7\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("35", "Richard Nixon", "richard-nixon", "{\"eg-item-skin-element-last-id\":\"12\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#363839\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#252525\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"1\",\"1\",\"1\",\"1\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#444444\",\"full-border-style\":\"solid\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#252525\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"50\",\"line-height\":\"50\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"80\",\"1\":\"0\",\"2\":\"-6\",\"3\":\"0\"},\"padding\":{\"0\":\"1\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"#000000\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"out\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"<span style=\\\"font-size:30px; font-weight:300;\\\">$<\\/span> 24.99\"}},{\"id\":\"1\",\"order\":0,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"30\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"title\"}},null,{\"id\":\"3\",\"order\":1,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"20\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"5\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"excerpt\"}},{\"id\":\"4\",\"order\":3,\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"top\":\"0\",\"top-unit-hover\":\"px\",\"right\":\"0\",\"right-unit-hover\":\"px\",\"bottom\":\"0\",\"bottom-unit-hover\":\"px\",\"left\":\"0\",\"left-unit-hover\":\"px\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"5\",\"0\",\"5\"],\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"transition-type\":\"out\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"SHIPPING INCL.\"}},{\"id\":\"5\",\"order\":2,\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#888888\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#444444\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"4gb Webspace Included\"}},{\"id\":\"6\",\"order\":3,\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#888888\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#444444\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"2 Domains\"}},{\"id\":\"7\",\"order\":4,\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#888888\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#444444\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"PHP5 Enabled\"}},{\"id\":\"8\",\"order\":5,\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#888888\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"1\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#444444\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"24h Support\"}},{\"id\":\"9\",\"order\":6,\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"top\":\"0\",\"top-unit-hover\":\"px\",\"right\":\"0\",\"right-unit-hover\":\"px\",\"bottom\":\"0\",\"bottom-unit-hover\":\"px\",\"left\":\"0\",\"left-unit-hover\":\"px\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"20\",\"0\",\"15\",\"0\"],\"padding\":[\"8\",\"25\",\"8\",\"25\"],\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"hideunder\":\"0\",\"transition\":\"skewright\",\"transition-type\":\"\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-separate\":\",\",\"source-text\":\"BUY NOW\"}},{\"id\":\"11\",\"order\":7,\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"12\",\"order\":1,\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("36", "Gerald Ford", "gerald-ford", "{\"eg-item-skin-element-last-id\":\"15\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"25\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#f5f5f5\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"1\",\"1\",\"1\",\"1\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"solid\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#f5f5f5\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"1\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"30\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"PREMIUM PRODUCT\"}},{\"id\":\"14\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"5\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"#000000\",\"bg-alpha\":\"65\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"50\",\"50\",\"50\",\"50\"],\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"50\",\"50\",\"50\",\"50\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"22\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"20\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"The best for your small business\"}},{\"id\":\"15\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"#000000\",\"bg-alpha\":\"65\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"50\",\"50\",\"50\",\"50\"],\"border-radius-unit\":\"%\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"50\",\"50\",\"50\",\"50\"],\"border-radius-unit-hover\":\"%\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-basket\"}},{\"id\":\"11\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"50\",\"line-height\":\"50\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"20\",\"20\",\"0\",\"20\"],\"background-color\":\"#eeeeee\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"<span style=\\\"font-size:30px; font-weight:300;\\\">$<\\/span> 39.99\"}},{\"id\":\"12\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"15\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"20\",\"20\",\"20\"],\"background-color\":\"#eeeeee\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"INCL. SHIPPING\"}},{\"id\":\"5\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"4GB Webspace Included\"}},{\"id\":\"6\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"2 Domains\"}},{\"id\":\"7\",\"order\":\"6\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"20\",\"17\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"PHP5 Enabled\"}},{\"id\":\"8\",\"order\":\"7\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"20\",\"20\",\"20\",\"20\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"1\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"24h Support\"}},{\"id\":\"9\",\"order\":\"8\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"top\":\"0\",\"top-unit-hover\":\"px\",\"right\":\"0\",\"right-unit-hover\":\"px\",\"bottom\":\"0\",\"bottom-unit-hover\":\"px\",\"left\":\"0\",\"left-unit-hover\":\"px\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"20\",\"1\":\"0\",\"2\":\"20\",\"3\":\"0\"},\"padding\":{\"0\":\"8\",\"1\":\"25\",\"2\":\"8\",\"3\":\"25\"},\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Raleway\\\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"hideunder\":\"0\",\"transition\":\"skewright\",\"transition-type\":\"\",\"delay\":\"34\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-separate\":\",\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-text\":\"BUY NOW\"}},{\"id\":\"13\",\"order\":\"9\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("37", "Jimmy Carter", "jimmy-carter", "{\"eg-item-skin-element-last-id\":\"24\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"0\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"30\",\"30\",\"27\",\"30\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"solid\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"27\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"solid\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"3\",\"6\",\"1\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"3dturnright\",\"media-animation-delay\":\"8\",\"google-fonts\":[\"Droid+Serif:400,700\",\"Open+Sans:400,600,700,800\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"15\",\"color\":\"#363839\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"75\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"skewright\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"I\'m a custom caption\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"20\",\"line-height\":\"25\",\"color\":\"#000000\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"20\",\"line-height-hover\":\"25\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Droid Serif\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"15\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"title\"}},{\"id\":\"2\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"3\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#999999\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"5\",\"20\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#aaaaaa\",\"border-style\":\"solid\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#aaaaaa\",\"border-style-hover\":\"solid\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-separate\":\", \",\"source-post\":\"cat_list\"}},{\"id\":\"4\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"15\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"top\":\"0\",\"top-unit-hover\":\"px\",\"right\":\"0\",\"right-unit-hover\":\"px\",\"bottom\":\"0\",\"bottom-unit-hover\":\"px\",\"left\":\"0\",\"left-unit-hover\":\"px\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"both\",\"margin\":[\"-5\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#e74124\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\".eg-kriki-element-2{.eg-kriki-element-4{}\",\"hideunder\":\"0\",\"transition\":\"skewright\",\"transition-type\":\"\",\"delay\":\"9\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"ADD ANYTHING\"}},{\"id\":\"5\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#777777\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"none\",\"margin\":[\"5\",\"20\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-post\":\"num_comments\"}},{\"id\":\"6\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top\":\"0\",\"top-unit\":\"px\",\"right\":\"0\",\"right-unit\":\"px\",\"bottom\":\"0\",\"bottom-unit\":\"px\",\"left\":\"0\",\"left-unit\":\"px\",\"split\":\"full\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"force-important\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"source-separate\":\",\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"7\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"6\",\"line-height\":\"7\",\"color\":\"transparent\",\"font-family\":\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#000000\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"25\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"split\":\"full\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"absolute-unit\":\"px\",\"source-text\":\"anemptytextlline\"}},{\"id\":\"8\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"9\",\"order\":\"6\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"22\",\"color\":\"#555555\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"5\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"margin-unit\":\"px\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"15\",\"source-separate\":\",\",\"source-post\":\"excerpt\"}},{\"id\":\"10\",\"order\":\"7\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-left-right\":\"0\",\"bottom-left-right\":\"0\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"11\",\"order\":\"8\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"15\",\"line-height\":\"14\",\"color\":\"#e74124\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"20\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"15\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Droid Serif\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"34\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"<i class=\\\"eg-icon-angle-right\\\"><\\/i> Read More\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("38", "Ronald Reagan", "ronald-reagan", "{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"transparent\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"transparent\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"20\",\"20\",\"20\",\"20\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"none\",\"cover-animation-center-type\":\"out\",\"cover-animation-delay-center\":\"4\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"out\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"tl\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"left\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"10\",\"1\":\"20\",\"2\":\"10\",\"3\":\"20\"},\"background-color\":\"#4d384b\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"6\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"\",\"transition-type\":\"out\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\"\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"date_modified\"}},{\"id\":\"1\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"23\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"10\",\"10\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"15\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"words\",\"limit-num\":\"10\",\"transition-type\":\"out\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"source-post\":\"title\"}},{\"id\":\"2\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#999999\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"20\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\", \",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\"}},{\"id\":\"8\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"20\",\"line-height\":\"28\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"#000000\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"20\",\"line-height-hover\":\"28\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"rotatescale\",\"delay\":\"10\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-icon\":\"eg-icon-link\"}},{\"id\":\"4\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"14\",\"color\":\"#999\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"num_comments\"}},{\"id\":\"5\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"words\",\"limit-num\":\"20\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"20\",\"color\":\"#444444\",\"font-family\":\"\\\"Droid Serif\\\"\",\"font-weight\":\"300\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"7\",\"0\",\"0\",\"0\"],\"padding\":[\"15\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"1\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"solid\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"34\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"margin-unit\":\"px\",\"source-post\":\"excerpt\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("39", "GeorgeBush", "georgebush", "{\"eg-item-skin-element-last-id\":\"4\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"content\",\"container-background-color\":\"#e33a0c\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"covergrowup\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Raleway:400,800,900\"]}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"none\",\"limit-num\":\"3\",\"enable-hover\":\"\",\"font-size\":\"35\",\"line-height\":\"38\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"20\",\"1\":\"0\",\"2\":\"0\",\"3\":\"20\"},\"padding\":{\"0\":\"0\",\"1\":\"20\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"margin-unit\":\"px\",\"source-post\":\"title\"}},{\"id\":\"1\",\"order\":\"1\",\"container\":\"br\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"limit-type\":\"words\",\"limit-num\":\"8\",\"enable-hover\":\"\",\"font-size\":\"18\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"block\",\"text-align\":\"left\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"5\",\"1\":\"0\",\"2\":\"20\",\"3\":\"20\"},\"padding\":{\"0\":\"0\",\"1\":\"20\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"margin-unit\":\"px\",\"source-post\":\"excerpt\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("40", "Essential Preview", "essential-preview", "{\"eg-item-skin-element-last-id\":\"9\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#0a0a0a\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"75\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#000000\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"out\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"none\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"out\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"none\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Open+Sans:700;800\"]}", "[{\"id\":\"1\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"24\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"4\",\"1\":\"12\",\"2\":\"3\",\"3\":\"12\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"10\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"0\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"20\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},{\"id\":\"9\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"0\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"24\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"3\",\"1\":\"10\",\"2\":\"2\",\"3\":\"10\"},\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#ffffff\",\"shadow-alpha\":\"0\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#617f52\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"24\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ff4d1c\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"0\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#617f52\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"0\",\"link-type\":\"meta\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"Check it Out\",\"link-type-meta\":\"eg-demogrid-link\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("41", "More Demo Examples", "more-demo-examples", "{\"eg-item-skin-element-last-id\":\"9\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#404655\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"60\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#000000\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"out\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"none\",\"cover-animation-center-type\":\"out\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"out\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"none\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Open+Sans:700;800\"]}", "[{\"id\":\"1\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"24\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"4\",\"1\":\"12\",\"2\":\"3\",\"3\":\"12\"},\"background-color\":\"#000000\",\"bg-alpha\":\"75\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"0\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"20\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipdown\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\"}},{\"id\":\"9\",\"order\":\"1\",\"container\":\"c\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"0\",\"order\":\"2\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"24\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"3\",\"10\",\"2\",\"10\"],\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#ffffff\",\"shadow-alpha\":\"0\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"#617f52\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"24\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"800\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ff4d1c\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"0\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#617f52\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"0\",\"link-type\":\"meta\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"Check it Out\",\"link-type-meta\":\"eg-demogrid-link\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("42", "Wilbert", "wilbert", "{\"eg-item-skin-element-last-id\":\"2\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#111111\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"65\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"out\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"out\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"<img src=\\\"%eg-clients-icon%\\\" \\/>\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("43", "Phillie", "phillie", "{\"eg-item-skin-element-last-id\":\"3\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"1\",\"1\",\"1\",\"1\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#ffffff\",\"full-border-style\":\"solid\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"1\",\"1\",\"1\",\"1\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#ffffff\",\"content-border-style\":\"solid\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"out\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"google-fonts\":[\"Raleway:700,800,900\"]}", "[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"text\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"none\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"0\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"0\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"out\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"margin-unit\":\"px\",\"source-separate\":\",\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-text\":\"<img src=\\\"%eg-clients-icon-dark%\\\" \\/>\"}},{\"id\":\"3\",\"order\":0,\"container\":\"tl\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"2\",\"1\":\"7\",\"2\":\"2\",\"3\":\"7\"},\"background-color\":\"#000000\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"0\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"81.67\",\"left-right\":\"38.5\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"%\",\"margin-unit\":\"px\",\"source-post\":\"title\"}}]", NULL);
INSERT INTO `wp_eg_item_skins` VALUES("44", "Jason", "jason", "{\"eg-item-skin-element-last-id\":\"32\",\"choose-layout\":\"masonry\",\"show-content\":\"bottom\",\"content-align\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"#ffffff\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"20\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"1\",\"1\",\"1\",\"1\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"#e5e5e5\",\"full-border-style\":\"solid\",\"full-overflow-hidden\":\"true\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"30\",\"30\",\"30\",\"30\"],\"content-border\":[\"1\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"#e5e5e5\",\"content-border-style\":\"solid\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-shadow-alpha\":\"20\",\"content-box-shadow\":[\"0\",\"-1\",\"2\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fade\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\"}", "[{\"id\":\"0\",\"order\":\"0\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"15\",\"line-height\":\"18\",\"color\":\"#000000\",\"font-family\":\"\\\"Raleway\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"none\",\"delay\":\"30\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"20\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-post\":\"title\"}},{\"id\":\"32\",\"order\":\"0\",\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slide\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"source-icon\":\"eg-icon-search\"}},{\"id\":\"25\",\"order\":\"1\",\"container\":\"m\",\"settings\":{\"0\":\"Default\",\"source\":\"woocommerce\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"enable-hover\":\"\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#89af72\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"position\":\"relative\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"2\",\"7\",\"1\",\"7\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"transition-type\":\"\",\"split\":\"full\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-separate\":\",\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"source-woocommerce\":\"wc_full_price\"}},{\"id\":\"31\",\"order\":\"2\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"30\",\"order\":\"3\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"woocommerce\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"30\",\"color\":\"#000000\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"#ffffff\",\"bg-alpha\":\"0\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"#ffffff\",\"bg-alpha-hover\":\"15\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"30\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"source-woocommerce\":\"wc_star_rating\"}},{\"id\":\"26\",\"order\":\"4\",\"container\":\"m\",\"settings\":{\"background-color\":\"#FFFFFF\",\"bg-alpha\":\"20\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"#000\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"#FFF\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"#000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"28\",\"order\":\"5\",\"container\":\"m\",\"settings\":{\"0\":\"\",\"source\":\"woocommerce\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\\\"Open Sans\\\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"capitalize\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"4\",\"3\":\"10\"},\"background-color\":\"#e33a0c\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-size-x\":\"100\",\"background-size-y\":\"100\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"#000000\",\"shadow-alpha\":\"100\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"5\",\"1\":\"5\",\"2\":\"5\",\"3\":\"5\"},\"border-radius-unit\":\"px\",\"border-color\":\"#e5e5e5\",\"border-style\":\"none\",\"css\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\\\"Open Sans\\\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"capitalize\",\"background-color-hover\":\"#000000\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"#000000\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"5\",\"1\":\"5\",\"2\":\"5\",\"3\":\"5\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#e33a0c\",\"border-style-hover\":\"none\",\"css-hover\":\"\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"hide-on-video\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"margin-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-woocommerce\":\"wc_add_to_cart_button\"}}]", NULL);

/* INSERT TABLE DATA: wp_eg_navigation_skins */
INSERT INTO `wp_eg_navigation_skins` VALUES("1", "Flat Light", "flat-light", "/********************************\r\n	-	FLAT LIGHT BUTTONS -\r\n*********************************/\r\n.flat-light .navigationbuttons,\r\n.flat-light .esg-pagination,\r\n.flat-light .esg-filters{	text-transform:uppercase;\r\n							text-align: center;\r\n						}\r\n\r\n.flat-light .esg-filterbutton,\r\n.flat-light .esg-navigationbutton,\r\n.flat-light .esg-sortbutton,\r\n.flat-light .esg-cartbutton {	color:#000;\r\n								margin-right:5px;\r\n								cursor:pointer;\r\n								position: relative;\r\n								z-index:2;\r\n								padding:1px 30px;\r\n								border:none;\r\n								line-height:38px;\r\n								border-radius:5px;\r\n								-moz-border-radius:5px;\r\n								-webkit-border-radius:5px;\r\n								font-size:12px;\r\n								font-weight:700;\r\n								font-family:\"Open Sans\",sans-serif;\r\n								display: inline-block;\r\n								background: #fff;\r\n								margin-bottom:5px;\r\n							}\r\n\r\n.flat-light .esg-navigationbutton	{ padding:2px 12px; }\r\n.flat-light .esg-navigationbutton *	{ color:#000; }\r\n.flat-light .esg-pagination-button:last-child { margin-right: 0; }\r\n\r\n.flat-light  .esg-sortbutton-wrapper,\r\n.flat-light  .esg-cartbutton-wrapper { display:inline-block; }\r\n.flat-light  .esg-sortbutton-order,\r\n.flat-light  .esg-cartbutton-order {	display:inline-block;\r\n										vertical-align:top;\r\n										border:none;\r\n										width:40px;\r\n										line-height:40px;\r\n										border-radius:5px;\r\n										-moz-border-radius:5px;\r\n										-webkit-border-radius:5px;\r\n										font-size:12px;\r\n										font-weight:700;\r\n										color:#999;\r\n										cursor: pointer;\r\n										background:#eee;\r\n										background: #fff;\r\n										margin-left:5px;\r\n									}\r\n\r\n.flat-light .esg-cartbutton {	color:#fff;\r\n								cursor: default !important;\r\n							}\r\n.flat-light .esg-cartbutton .esgicon-basket	{\r\n												color:#fff;\r\n												font-size:15px;\r\n												line-height:15px;\r\n												margin-right:10px;\r\n											}\r\n.flat-light .esg-cartbutton-wrapper { cursor: default !important; }\r\n\r\n.flat-light .esg-sortbutton,\r\n.flat-light .esg-cartbutton {	display:inline-block;\r\n								position:relative;\r\n								cursor: pointer;\r\n								margin-right:0px;\r\n								border-radius:5px;\r\n								-moz-border-radius:5px;\r\n								-webkit-border-radius:5px;\r\n							}\r\n\r\n.flat-light .esg-navigationbutton:hover,\r\n.flat-light .esg-filterbutton:hover,\r\n.flat-light .esg-sortbutton:hover,\r\n.flat-light .esg-sortbutton-order:hover,\r\n.flat-light .esg-cartbutton-order:hover,\r\n.flat-light .esg-filterbutton.selected {\r\n										border-color:none;color:#000;\r\n										background:#fff;\r\n									   }\r\n\r\n.flat-light .esg-navigationbutton:hover * { color:#333; }\r\n\r\n.flat-light .esg-sortbutton-order.tp-desc:hover	{ color:#333; }\r\n\r\n.flat-light .esg-filter-checked	{	padding:1px 3px;\r\n									color:#cbcbcb;\r\n									background:#cbcbcb;\r\n									margin-left:7px;\r\n									font-size:9px;\r\n									font-weight:300;\r\n									line-height:9px;\r\n									vertical-align: middle;\r\n								}\r\n.flat-light .esg-filterbutton.selected .esg-filter-checked,\r\n.flat-light .esg-filterbutton:hover .esg-filter-checked	{\r\n															padding:1px 3px 1px 3px;\r\n															color:#fff;\r\n															background:#000;\r\n															margin-left:7px;\r\n															font-size:9px;\r\n															font-weight:300;\r\n															line-height:9px;\r\n															vertical-align: middle;\r\n														}");
INSERT INTO `wp_eg_navigation_skins` VALUES("2", "Flat Dark", "flat-dark", "/********************************\r\n	-	FLAT DARK BUTTONS -\r\n*********************************/\r\n.flat-dark .navigationbuttons,\r\n.flat-dark .esg-pagination,\r\n.flat-dark .esg-filters {\r\n							text-transform:uppercase;\r\n							text-align: center;\r\n						}\r\n\r\n.flat-dark .esg-filterbutton,\r\n.flat-dark .esg-navigationbutton,\r\n.flat-dark .esg-sortbutton,\r\n.flat-dark .esg-cartbutton {color:#fff;\r\n							margin-right:5px;\r\n							cursor:pointer;\r\n							padding:1px 30px;\r\n							border:none;\r\n							line-height:38px;\r\n							border-radius:5px;\r\n							-moz-border-radius:5px;\r\n							-webkit-border-radius:5px;\r\n							font-size:12px;\r\n							font-weight:600;\r\n							font-family:\"Open Sans\",sans-serif;\r\n							display: inline-block;\r\n							background:#3a3a3a;\r\n							background: rgba(0,0,0,0.2);\r\n							margin-bottom:5px;\r\n							}\r\n\r\n.flat-dark .esg-navigationbutton { padding:1px 18px; }\r\n.flat-dark .esg-navigationbutton * { color:#fff; }\r\n.flat-dark .esg-pagination-button:last-child,\r\n.flat-dark .esg-filterbutton:last-child{ margin-right: 0; }\r\n.flat-dark .esg-left, .flat-dark .esg-right { padding:1px 12px; }\r\n\r\n.flat-dark  .esg-sortbutton-wrapper,\r\n.flat-dark  .esg-cartbutton-wrapper	{ display:inline-block; }\r\n.flat-dark  .esg-sortbutton-order,\r\n.flat-dark  .esg-cartbutton-order { display:inline-block;\r\n									vertical-align:top;\r\n									border:none;\r\n									width:40px;\r\n									line-height:40px;\r\n									border-radius:5px;\r\n									-moz-border-radius:5px;\r\n									-webkit-border-radius:5px;\r\n									font-size:12px;\r\n									font-weight:700;\r\n									color:#999;\r\n									cursor: pointer;\r\n									background:#eee;\r\n									background: rgba(0,0,0,0.2);\r\n									margin-left:5px;\r\n								}\r\n\r\n.flat-dark .esg-cartbutton {color:#fff;\r\n							cursor: default !important;\r\n							}\r\n.flat-dark .esg-cartbutton .esgicon-basket {color:#fff;\r\n											font-size:15px;\r\n											line-height:15px;\r\n											margin-right:10px;\r\n											}\r\n.flat-dark  .esg-cartbutton-wrapper	{ cursor: default !important; }\r\n\r\n.flat-dark .esg-sortbutton,\r\n.flat-dark .esg-cartbutton { display:inline-block;\r\n							position:relative;\r\n							cursor: pointer;\r\n							margin-right:0px;\r\n							border-radius:5px;\r\n							-moz-border-radius:5px;\r\n							-webkit-border-radius:5px;\r\n							}\r\n\r\n.flat-dark .esg-navigationbutton:hover,\r\n.flat-dark .esg-filterbutton:hover,\r\n.flat-dark .esg-sortbutton:hover,\r\n.flat-dark .esg-sortbutton-order:hover,\r\n.flat-dark .esg-cartbutton-order:hover,\r\n.flat-dark .esg-filterbutton.selected { color:#fff;\r\n										border-color:none;\r\n										background:#4a4a4a;\r\n										background: rgba(0,0,0,0.5);\r\n									 }\r\n\r\n.flat-dark .esg-navigationbutton:hover * { color:#fff; }\r\n.flat-dark .esg-sortbutton-order.tp-desc:hover	{ color:#fff; }\r\n.flat-dark .esg-filter-checked {padding:1px 3px;\r\n								color:transparent;\r\n								background:#000;\r\n								background: rgba(0,0,0,0.2);\r\n								margin-left:7px;\r\n								font-size:9px;\r\n								font-weight:300;\r\n								line-height:9px;\r\n								vertical-align: middle:\r\n								}\r\n								\r\n.flat-dark .esg-filterbutton.selected .esg-filter-checked,\r\n.flat-dark .esg-filterbutton:hover .esg-filter-checked {padding:1px 3px 1px 3px;\r\n														color:#fff;\r\n														background:#000;\r\n														background: rgba(0,0,0,0.2);\r\n														margin-left:7px;\r\n														font-size:9px;\r\n														font-weight:300;\r\n														line-height:9px;\r\n														vertical-align: middle\r\n														}");
INSERT INTO `wp_eg_navigation_skins` VALUES("3", "Minimal Dark", "minimal-dark", "/********************************\r\n	-	MINIMAL DARK BUTTONS -\r\n*********************************/\r\n\r\n.minimal-dark .navigationbuttons,\r\n.minimal-dark .esg-pagination,\r\n.minimal-dark .esg-filters { text-align: center; }\r\n\r\n.minimal-dark .esg-filterbutton,\r\n.minimal-dark .esg-navigationbutton,\r\n.minimal-dark .esg-sortbutton,\r\n.minimal-dark .esg-cartbutton { color:#fff;\r\n								color:rgba(255,255,255,1);\r\n								margin-right:5px;\r\n								cursor:pointer;\r\n								padding:0px 17px;\r\n								border:1px solid rgb(255,255,255);\r\n								border:1px solid rgba(255,255,255,0.1);\r\n								line-height:38px;\r\n								border-radius:5px;\r\n								-moz-border-radius:5px;\r\n								-webkit-border-radius:5px;\r\n								font-size:12px;\r\n								font-weight:600;\r\n								font-family:\"Open Sans\",sans-serif;\r\n								display: inline-block;\r\n								background:transparent;\r\n								margin-bottom:5px;\r\n								}\r\n\r\n\r\n.minimal-dark .esg-navigationbutton * {\r\n										color:#fff;\r\n										color:rgba(255,255,255,1);\r\n									}\r\n.minimal-dark .esg-navigationbutton	{ padding:0px 11px; }\r\n.minimal-dark .esg-pagination-button { padding:0px 16px; }\r\n.minimal-dark .esg-pagination-button:last-child { margin-right: 0; }\r\n\r\n.minimal-dark  .esg-sortbutton-wrapper,\r\n.minimal-dark  .esg-cartbutton-wrapper { display:inline-block; }\r\n.minimal-dark  .esg-sortbutton-order,\r\n.minimal-dark  .esg-cartbutton-order {  display:inline-block;\r\n										vertical-align:top;\r\n										border:1px solid rgb(255,255,255);\r\n										border:1px solid rgba(255,255,255,0.1);\r\n										width:40px;\r\n										line-height:38px;\r\n										border-radius: 0px 5px 5px 0px;\r\n										-moz-border-radius: 0px 5px 5px 0px;\r\n										-webkit-border-radius: 0px 5px 5px 0px;\r\n										font-size:12px;\r\n										font-weight:600;\r\n										color:#fff;\r\n										cursor: pointer;\r\n										background:transparent;\r\n									}\r\n\r\n.minimal-dark .esg-cartbutton {\r\n								color:#fff;\r\n								cursor: default !important;\r\n							  }\r\n.minimal-dark .esg-cartbutton .esgicon-basket {\r\n												color:#fff;\r\n												font-size:15px;\r\n												line-height:15px;\r\n												margin-right:10px;\r\n											  }\r\n.minimal-dark  .esg-cartbutton-wrapper { cursor: default !important; }\r\n\r\n.minimal-dark .esg-sortbutton,\r\n.minimal-dark .esg-cartbutton {\r\n								display:inline-block;\r\n								position:relative;\r\n								cursor: pointer;\r\n								margin-right:0px;\r\n								border-right:none;\r\n								border-radius:5px 0px 0px 5px;\r\n								-moz-border-radius:5px 0px 0px 5px;\r\n								-webkit-border-radius:5px 0px 0px 5px;\r\n							   }\r\n\r\n.minimal-dark .esg-navigationbutton:hover,\r\n.minimal-dark .esg-filterbutton:hover,\r\n.minimal-dark .esg-sortbutton:hover,\r\n.minimal-dark .esg-sortbutton-order:hover,\r\n.minimal-dark .esg-cartbutton-order:hover,\r\n.minimal-dark .esg-filterbutton.selected {\r\n											border-color:#fff;\r\n											border-color:rgba(255,255,255,0.2);\r\n											color:#fff;\r\n											box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\r\n											background:#333;\r\n											background: rgba(255,255,255,0.1);\r\n										  }\r\n\r\n.minimal-dark .esg-navigationbutton:hover * { color:#fff; }\r\n\r\n.minimal-dark .esg-sortbutton-order.tp-desc:hover {	border-color:#fff;\r\n													border-color:rgba(255,255,255,0.2);\r\n													color:#fff;\r\n													box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\r\n												  }\r\n\r\n.minimal-dark .esg-filter-checked {\r\n									padding:1px 3px;\r\n									color:transparent;\r\n									background:#000;\r\n									background: rgba(0,0,0,0.10);\r\n									margin-left:7px;\r\n									font-size:9px;\r\n									font-weight:300;\r\n									line-height:9px;\r\n									vertical-align: middle;\r\n								  }\r\n.minimal-dark .esg-filterbutton.selected .esg-filter-checked,\r\n.minimal-dark .esg-filterbutton:hover .esg-filter-checked {\r\n															padding:1px 3px 1px 3px;\r\n															color:#fff;\r\n															background:#000;\r\n															background: rgba(0,0,0,0.10);\r\n															margin-left:7px;\r\n															font-size:9px;\r\n															font-weight:300;\r\n															line-height:9px;\r\n															vertical-align: middle;\r\n														  }");
INSERT INTO `wp_eg_navigation_skins` VALUES("4", "Minimal Light", "minimal-light", "/******************************\r\n	-	MINIMAL LIGHT SKIN	-\r\n********************************/\r\n\r\n.minimal-light .navigationbuttons,\r\n.minimal-light .esg-pagination,\r\n.minimal-light .esg-filters { text-align: center; }\r\n\r\n.minimal-light .esg-filterbutton,\r\n.minimal-light .esg-navigationbutton,\r\n.minimal-light .esg-sortbutton,\r\n.minimal-light .esg-cartbutton a{ \r\n								color:#999;\r\n								margin-right:5px;\r\n								cursor:pointer;\r\n								padding:0px 16px;\r\n								border:1px solid #e5e5e5;\r\n								line-height:38px;\r\n								border-radius:5px;\r\n								-moz-border-radius:5px;\r\n								-webkit-border-radius:5px;\r\n								font-size:12px;\r\n								font-weight:700;\r\n								font-family:\"Open Sans\",sans-serif;\r\n								display: inline-block;\r\n								background:#fff;\r\n								margin-bottom:5px;\r\n							  }\r\n\r\n/*.minimal-light .esg-cartbutton a { color: #999; }*/\r\n\r\n.minimal-light .esg-navigationbutton * { color:#999; }\r\n.minimal-light .esg-navigationbutton	{ padding:0px 16px; }\r\n.minimal-light .esg-pagination-button:last-child { margin-right: 0; }\r\n.minimal-light .esg-left, .minimal-light .esg-right	{ padding:0px 11px; }\r\n\r\n.minimal-light  .esg-sortbutton-wrapper,\r\n.minimal-light  .esg-cartbutton-wrapper { display:inline-block; }\r\n.minimal-light  .esg-sortbutton-order,\r\n.minimal-light  .esg-cartbutton-order {	display:inline-block;\r\n										vertical-align:top;\r\n										border:1px solid #e5e5e5;\r\n										width:40px;\r\n										line-height:38px;\r\n										border-radius: 0px 5px 5px 0px;\r\n										-moz-border-radius: 0px 5px 5px 0px;\r\n										-webkit-border-radius: 0px 5px 5px 0px;\r\n										font-size:12px;\r\n										font-weight:700;\r\n										color:#999;\r\n										cursor: pointer;\r\n										background:#fff;\r\n									   }\r\n\r\n.minimal-light .esg-cartbutton {\r\n								color:#333;\r\n								cursor: default !important;\r\n								}\r\n.minimal-light .esg-cartbutton .esgicon-basket {color:#333;\r\n												font-size:15px;\r\n												line-height:15px;\r\n												margin-right:10px;\r\n												}\r\n.minimal-light  .esg-cartbutton-wrapper { cursor: default !important; }\r\n\r\n.minimal-light .esg-sortbutton,\r\n.minimal-light .esg-cartbutton { display:inline-block;\r\n								position:relative;\r\n								cursor: pointer;\r\n								margin-right:0px;\r\n								border-right:none;\r\n								border-radius:5px 0px 0px 5px;\r\n								-moz-border-radius:5px 0px 0px 5px;\r\n								-webkit-border-radius:5px 0px 0px 5px;\r\n								}\r\n\r\n.minimal-light .esg-navigationbutton:hover,\r\n.minimal-light .esg-filterbutton:hover,\r\n.minimal-light .esg-sortbutton:hover,\r\n.minimal-light .esg-sortbutton-order:hover,\r\n.minimal-light .esg-cartbutton a:hover,\r\n.minimal-light .esg-filterbutton.selected {\r\n											background-color:#fff;\r\n											border-color:#bbb;\r\n											color:#333;\r\n											box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\r\n										  }\r\n\r\n.minimal-light .esg-navigationbutton:hover * { color:#333; }\r\n\r\n.minimal-light .esg-sortbutton-order.tp-desc:hover {\r\n													border-color:#bbb;\r\n													color:#333;\r\n													box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\r\n												   }\r\n\r\n.minimal-light .esg-filter-checked { \r\n									padding:1px 3px;\r\n									color:#cbcbcb;\r\n									background:#cbcbcb;\r\n									margin-left:7px;\r\n									font-size:9px;\r\n									font-weight:300;\r\n									line-height:9px;\r\n									vertical-align: middle;\r\n									}\r\n.minimal-light .esg-filterbutton.selected .esg-filter-checked,\r\n.minimal-light .esg-filterbutton:hover .esg-filter-checked {\r\n															padding:1px 3px 1px 3px;\r\n															color:#fff;\r\n															background:#000;\r\n															margin-left:7px;\r\n															font-size:9px;\r\n															font-weight:300;\r\n															line-height:9px;\r\n															vertical-align: middle;\r\n														   }");
INSERT INTO `wp_eg_navigation_skins` VALUES("5", "Simple Light", "simple-light", "/******************************\r\n	-	SIMPLE LIGHT SKIN	-\r\n********************************/\r\n\r\n.simple-light .navigationbuttons,\r\n.simple-light .esg-pagination,\r\n.simple-light .esg-filters { text-align: center; }\r\n\r\n.simple-light .esg-filterbutton,\r\n.simple-light .esg-navigationbutton,\r\n.simple-light .esg-sortbutton,\r\n.simple-light .esg-cartbutton a {\r\n								color:#000;\r\n								margin-right:5px;\r\n								cursor:pointer;\r\n								padding:0px 11px;\r\n								border:1px solid #e5e5e5;\r\n								line-height:30px;\r\n								font-size:12px;\r\n								font-weight:400;\r\n								font-family:\\\\\\\"Open Sans\\\\\\\",sans-serif;\r\n								display: inline-block;\r\n								background:#eee;\r\n								margin-bottom:5px;\r\n							  }\r\n\r\n.simple-light .esg-navigationbutton * {	color:#000; }\r\n.simple-light .esg-left,\r\n.simple-light .esg-right { color:#000; padding:0px 7px;}\r\n.simple-light .esg-pagination-button:last-child { margin-right: 0; }\r\n\r\n.simple-light .esg-sortbutton-wrapper,\r\n.simple-light .esg-cartbutton-wrapper {	display:inline-block; }\r\n.simple-light .esg-sortbutton-order,\r\n.simple-light .esg-cartbutton-order {\r\n									display: inline-block;\r\n									vertical-align: top;\r\n									border: 1px solid #e5e5e5;\r\n									width: 29px;\r\n									line-height: 30px;\r\n									font-size: 9px;\r\n									font-weight: 400;\r\n									color: #000;\r\n									cursor: pointer;\r\n									background: #eee;\r\n									}\r\n\r\n.simple-light .esg-cartbutton {\r\n								color:#333;\r\n								cursor: default !important;\r\n							  }\r\n.simple-light .esg-cartbutton .esgicon-basket {\r\n												color:#333;\r\n												font-size:15px;\r\n												line-height:15px;\r\n												margin-right:10px;\r\n											  }\r\n.simple-light  .esg-cartbutton-wrapper { cursor: default !important; }\r\n\r\n.simple-light .esg-sortbutton,\r\n.simple-light .esg-cartbutton {\r\n								display:inline-block;\r\n								position:relative;\r\n								cursor: pointer;\r\n								margin-right:5px;\r\n							  }\r\n\r\n\r\n.simple-light .esg-navigationbutton:hover,\r\n.simple-light .esg-filterbutton:hover,\r\n.simple-light .esg-sortbutton:hover,\r\n.simple-light .esg-sortbutton-order:hover,\r\n.simple-light .esg-cartbutton a:hover,\r\n.simple-light .esg-filterbutton.selected {\r\n											background-color:#fff;\r\n											border-color:#bbb;\r\n											color:#333;\r\n											box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\r\n										 }\r\n\r\n.simple-light .esg-navigationbutton:hover * { color:#333; }\r\n\r\n.simple-light .esg-sortbutton-order.tp-desc:hover {\r\n													border-color:#bbb;\r\n													color:#333;\r\n													box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\r\n												  }\r\n\r\n.simple-light .esg-filter-checked {\r\n									padding:3px;\r\n									color:#c5c5c5;\r\n									background:#ddd;\r\n									margin-left:7px;\r\n									font-size:9px;\r\n									font-weight:400;\r\n									line-height:20px;\r\n									vertical-align: middle;\r\n								  }\r\n.simple-light .esg-filterbutton.selected .esg-filter-checked,\r\n.simple-light .esg-filterbutton:hover .esg-filter-checked {\r\n															padding: 3px;\r\n															color:#fff;\r\n															background:#000;\r\n															margin-left:7px;\r\n															font-size:9px;\r\n															font-weight:400;\r\n															line-height:20px;\r\n															vertical-align: middle\r\n														}");
INSERT INTO `wp_eg_navigation_skins` VALUES("6", "Simple Dark", "simple-dark", "/********************************\r\n-	SIMPLE DARK BUTTONS -\r\n*********************************/\r\n\r\n.simple-dark .navigationbuttons,\r\n.simple-dark .esg-pagination,\r\n.simple-dark .esg-filters {	text-align: center; }\r\n\r\n.simple-dark .esg-filterbutton,\r\n.simple-dark .esg-navigationbutton,\r\n.simple-dark .esg-sortbutton,\r\n.simple-dark .esg-cartbutton {\r\n								color:#fff;\r\n								margin-right:5px;\r\n								cursor:pointer;\r\n								padding:0px 10px;\r\n								border:1px solid rgb(255,255,255);\r\n								border:1px solid rgba(255,255,255,0.15);\r\n								line-height:29px;\r\n								font-size:12px;\r\n								font-weight:600;\r\n								font-family:\"Open Sans\",sans-serif;\r\n								display: inline-block;\r\n								background: rgba(255,255,255,0.08 );\r\n								margin-bottom:5px;\r\n							  }\r\n\r\n.simple-dark .esg-navigationbutton * {\r\n										color:#fff;\r\n									 }\r\n.simple-dark .esg-left, .simple-dark .esg-right { padding:0px 5px !important; }\r\n\r\n.simple-dark  .esg-sortbutton-wrapper,\r\n.simple-dark  .esg-cartbutton-wrapper {	display:inline-block; }\r\n.simple-dark  .esg-sortbutton-order,\r\n.simple-dark  .esg-cartbutton-order {\r\n									display: inline-block;\r\n									vertical-align: top;\r\n									border:1px solid rgb(255,255,255);\r\n									border:1px solid rgba(255,255,255,0.15);\r\n									width: 29px;\r\n									line-height: 29px;\r\n									font-size: 9px;\r\n									font-weight: 600;\r\n									color: #fff;\r\n									cursor: pointer;\r\n									background: rgba(255,255,255,0.08 );\r\n									}\r\n\r\n.simple-dark .esg-cartbutton {\r\n							color:#fff;\r\n							cursor: default !important;\r\n							}\r\n							\r\n.simple-dark .esg-cartbutton .esgicon-basket {\r\n												color:#fff;\r\n												font-size:15px;\r\n												line-height:15px;\r\n												margin-right:10px;\r\n											  }\r\n.simple-dark  .esg-cartbutton-wrapper {	cursor: default !important; }\r\n\r\n.simple-dark .esg-sortbutton,\r\n.simple-dark .esg-cartbutton {\r\n								display:inline-block;\r\n								position:relative;\r\n								cursor: pointer;\r\n								margin-right:5px;\r\n							  }\r\n\r\n\r\n.simple-dark .esg-navigationbutton:hover,\r\n.simple-dark .esg-filterbutton:hover,\r\n.simple-dark .esg-sortbutton:hover,\r\n.simple-dark .esg-sortbutton-order:hover,\r\n.simple-dark .esg-cartbutton-order:hover,\r\n.simple-dark .esg-filterbutton.selected {\r\n										border-color:#fff;\r\n										color:#000;\r\n										box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\r\n										background:#fff;\r\n										}\r\n\r\n.simple-dark .esg-navigationbutton:hover * { color:#000; }\r\n.simple-dark .esg-pagination-button:last-child { margin-right: 0; }\r\n\r\n.simple-dark .esg-sortbutton-order.tp-desc:hover {\r\n													border-color:#fff;\r\n													border-color:rgba(255,255,255,0.2);\r\n													color:#000;\r\n													box-shadow: 0px -3px 5px 0px rgba(0,0,0,0.13) !important;\r\n												 }\r\n\r\n.simple-dark .esg-filter-checked {\r\n									padding:1px;\r\n									color:transparent;\r\n									background:#000;\r\n									background: rgba(255,255,255,0.15);\r\n									margin-left:7px;\r\n									font-size:9px;\r\n									font-weight:300;\r\n									line-height:9px;\r\n									vertical-align: middle;\r\n								  }\r\n\r\n.simple-dark .esg-filterbutton.selected .esg-filter-checked,\r\n.simple-dark .esg-filterbutton:hover .esg-filter-checked {\r\n															padding:1px;\r\n															color:#000;\r\n															background:#fff;\r\n															margin-left:7px;\r\n															font-size:9px;\r\n															font-weight:300;\r\n															line-height:9px;\r\n															vertical-align: middle;\r\n														  }");
INSERT INTO `wp_eg_navigation_skins` VALUES("7", "Text Dark", "text-dark", "/********************************\r\n-	TEXT DARK BUTTONS -\r\n*********************************/\r\n\r\n.text-dark .navigationbuttons,\r\n.text-dark .esg-pagination,\r\n.text-dark .esg-filters { text-align: center; }\r\n\r\n.text-dark .esg-filterbutton,\r\n.text-dark .esg-navigationbutton,\r\n.text-dark .esg-sortbutton,\r\n.text-dark .esg-cartbutton {\r\n							color:#fff;\r\n							color:rgba(255,255,255,0.4);\r\n							margin-right:5px;\r\n							cursor:pointer;\r\n							padding:0px 15px 0px 10px;\r\n							line-height:20px;\r\n							font-size:12px;\r\n							font-weight:600;\r\n							font-family:\"Open Sans\",sans-serif;\r\n							display: inline-block;\r\n							background:transparent;\r\n							margin-bottom:5px;\r\n						  }\r\n\r\n.text-dark .esg-navigationbutton * {\r\n									color:#fff;\r\n									color:rgba(255,255,255,0.4);\r\n								   }\r\n\r\n.text-dark  .esg-sortbutton-wrapper,\r\n.text-dark  .esg-cartbutton-wrapper { display:inline-block; }\r\n.text-dark  .esg-sortbutton-order,\r\n.text-dark  .esg-cartbutton-order {\r\n									display: inline-block;\r\n									vertical-align: middle;\r\n									width: 29px;\r\n									line-height: 20px;\r\n									font-size: 9px;\r\n									font-weight: 700;\r\n									color:#fff;\r\n									color:rgba(255,255,255,0.4);\r\n									cursor: pointer;\r\n									background: transparent;\r\n								  }\r\n\r\n.text-dark .esg-cartbutton {\r\n							color:#fff;\r\n							color:rgba(255,255,255,0.4);\r\n							cursor: default !important;\r\n							}\r\n.text-dark .esg-cartbutton .esgicon-basket {\r\n											color:#fff;\r\n											color:rgba(255,255,255,0.4);\r\n											font-size:15px;\r\n											line-height:15px;\r\n											margin-right:10px;\r\n											}\r\n.text-dark  .esg-cartbutton-wrapper { cursor: default !important; }\r\n\r\n.text-dark .esg-sortbutton,\r\n.text-dark .esg-cartbutton {\r\n							display:inline-block;\r\n							position:relative;\r\n							cursor: pointer;\r\n							margin-right:0px;\r\n							}\r\n\r\n.text-dark .esg-navigationbutton:hover,\r\n.text-dark .esg-filterbutton:hover,\r\n.text-dark .esg-sortbutton:hover,\r\n.text-dark .esg-filterbutton.selected,\r\n.text-dark .esg-sortbutton-order:hover,\r\n.text-dark .esg-cartbutton-order:hover { color:#fff; }\r\n\r\n.text-dark .esg-navigationbutton:hover,\r\n.text-dark .esg-filterbutton:hover span:first-child,\r\n.text-dark .esg-filterbutton.selected span:first-child { text-decoration: none; }\r\n\r\n.text-dark .esg-filterbutton {\r\n								border-right:1px solid #fff;\r\n								border-right:1px solid rgba(255,255,255,0.15);\r\n							  }\r\n.text-dark .esg-filterbutton:last-child	{ border-right:none; }\r\n\r\n.text-dark .esg-sortbutton-order {\r\n									padding-left:10px;\r\n									border-left:1px solid #fff;\r\n									border-left:1px solid rgba(255,255,255,0.15);\r\n								 }\r\n\r\n.text-dark .esg-navigationbutton:hover * { color:#fff; }\r\n\r\n.text-dark .esg-sortbutton-order.tp-desc:hover {\r\n												border-color:#fff;\r\n												border-color:rgba(255,255,255,0.15);\r\n												color:#fff;\r\n												}\r\n\r\n.text-dark .esg-filter-checked {\r\n								padding:1px 3px;\r\n								color:transparent;\r\n								background:#000;\r\n								background: rgba(0,0,0,0.10);\r\n								margin-left:7px;\r\n								font-size:9px;\r\n								font-weight:300;\r\n								line-height:9px;\r\n								vertical-align: middle;\r\n								}\r\n\r\n.text-dark .esg-filter-checked * { }\r\n.text-dark .esg-filterbutton.selected .esg-filter-checked,\r\n.text-dark .esg-filterbutton:hover .esg-filter-checked {\r\n														padding:1px 3px 1px 3px;\r\n														color:#fff;\r\n														background:#000;\r\n														background: rgba(0,0,0,0.10);\r\n														margin-left:7px;\r\n														font-size:9px;\r\n														font-weight:300;\r\n														line-height:9px;\r\n														vertical-align: middle\r\n														}");
INSERT INTO `wp_eg_navigation_skins` VALUES("8", "Text Light", "text-light", "/********************************\r\n-	TEXT LIGHT BUTTONS -\r\n*********************************/\r\n\r\n.text-light .navigationbuttons,\r\n.text-light .esg-pagination,\r\n.text-light .esg-filters {\r\n						text-align: center;\r\n						position: relative;\r\n						z-index:2;\r\n						}\r\n\r\n.text-light .esg-filterbutton,\r\n.text-light .esg-navigationbutton,\r\n.text-light .esg-sortbutton,\r\n.text-light .esg-cartbutton {\r\n							color:#999;\r\n							margin-right:5px;\r\n							cursor:pointer;\r\n							padding:0px 15px 0px 10px;\r\n							line-height:20px;\r\n							font-size:12px;\r\n							font-weight:600;\r\n							font-family:\"Open Sans\",sans-serif;\r\n							display: inline-block;\r\n							background:transparent;\r\n							margin-bottom:5px;\r\n							}\r\n\r\n.text-light .esg-navigationbutton * { color:#999; }\r\n\r\n.text-light  .esg-sortbutton-wrapper,\r\n.text-light  .esg-cartbutton-wrapper { display:inline-block; }\r\n.text-light  .esg-sortbutton-order,\r\n.text-light  .esg-cartbutton-order {\r\n									display: inline-block;\r\n									vertical-align: middle;\r\n									width: 29px;\r\n									line-height: 20px;\r\n									font-size: 9px;\r\n									font-weight: 700;\r\n									color:#999;\r\n									cursor: pointer;\r\n									background: transparent;\r\n									}\r\n\r\n.text-light .esg-cartbutton {\r\n							color:#999;\r\n							cursor: default !important;\r\n							}\r\n.text-light .esg-cartbutton .esgicon-basket {\r\n											color:#999;\r\n											font-size:15px;\r\n											line-height:15px;\r\n											margin-right:10px;\r\n											}\r\n.text-light .esg-cartbutton-wrapper { cursor: default !important; }\r\n\r\n.text-light .esg-sortbutton,\r\n.text-light .esg-cartbutton {\r\n							display:inline-block;\r\n							position:relative;\r\n							cursor: pointer;\r\n							margin-right:0px;\r\n							}\r\n\r\n.text-light .esg-navigationbutton:hover,\r\n.text-light .esg-filterbutton:hover,\r\n.text-light .esg-sortbutton:hover,\r\n.text-light .esg-filterbutton.selected,\r\n.text-light .esg-sortbutton-order:hover,\r\n.text-light .esg-cartbutton-order:hover { color:#444; }\r\n\r\n.text-light .esg-navigationbutton:hover,\r\n.text-light .esg-filterbutton:hover span:first-child,\r\n.text-light .esg-filterbutton.selected span:first-child { text-decoration: underline; }\r\n\r\n.text-light .esg-filterbutton {	border-right:1px solid #e5e5e5; }\r\n.text-light .esg-filterbutton:last-child { border-right:none; }\r\n\r\n.text-light .esg-sortbutton-order {\r\n									padding-left:10px;\r\n									border-left:1px solid #e5e5e5;\r\n								  }\r\n\r\n.text-light .esg-navigationbutton:hover * {	color:#444; }\r\n\r\n.text-light .esg-sortbutton-order.tp-desc:hover {\r\n												border-color:#e5e5e5;\r\n												color:#444;\r\n												}\r\n\r\n.text-light .esg-filter-checked {\r\n								padding:1px 3px;\r\n								color:transparent;\r\n								background:#eee;\r\n								background: rgba(0,0,0,0.05);\r\n								margin-left:7px;\r\n								font-size:9px;\r\n								font-weight:300;\r\n								line-height:9px;\r\n								vertical-align: middle;\r\n								}\r\n.text-light .esg-filter-checked * { }\r\n.text-light .esg-filterbutton.selected .esg-filter-checked,\r\n.text-light .esg-filterbutton:hover .esg-filter-checked {\r\n														padding:1px 3px 1px 3px;\r\n														color:#333;\r\n														background:#eee;\r\n														background: rgba(0,0,0,0.05);\r\n														margin-left:7px;\r\n														font-size:9px;\r\n														font-weight:300;\r\n														line-height:9px;\r\n														vertical-align: middle;\r\n														}\r\n");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://localhost/mdeal2", "yes");
INSERT INTO `wp_options` VALUES("2", "home", "http://localhost/mdeal2", "yes");
INSERT INTO `wp_options` VALUES("3", "blogname", "Mdeal Theme", "yes");
INSERT INTO `wp_options` VALUES("4", "blogdescription", "Just another WordPress site", "yes");
INSERT INTO `wp_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("6", "admin_email", "admin@gmail.com", "yes");
INSERT INTO `wp_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("13", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("19", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("20", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("21", "default_pingback_flag", "1", "yes");
INSERT INTO `wp_options` VALUES("22", "posts_per_page", "6", "yes");
INSERT INTO `wp_options` VALUES("23", "date_format", "F j, Y", "yes");
INSERT INTO `wp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("26", "comment_moderation", "0", "yes");
INSERT INTO `wp_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("33", "active_plugins", "a:9:{i:0;s:33:\"cmssuperheroes/cmssuperheroes.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:33:\"essential-grid/essential-grid.php\";i:4;s:27:\"js_composer/js_composer.php\";i:5;s:37:\"mailchimp-widget/mailchimp-widget.php\";i:6;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:7;s:23:\"revslider/revslider.php\";i:8;s:33:\"wp-user-avatar/wp-user-avatar.php\";}", "yes");
INSERT INTO `wp_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("37", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("38", "gmt_offset", "0", "yes");
INSERT INTO `wp_options` VALUES("39", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("40", "recently_edited", "a:5:{i:0;s:78:\"/home/templat6/public_html/pltheme/mdeal/wp-content/themes/exo-theme/style.css\";i:2;s:111:\"/home/nginx/tn.joomexp.com/public_html/wordpress/exo-theme/wp-content/plugins/essential-grid/essential-grid.php\";i:3;s:111:\"/home/nginx/tn.joomexp.com/public_html/wordpress/exo-theme/wp-content/plugins/cmssuperheroes/cmssuperheroes.php\";i:4;s:114:\"/home/nginx/tn.joomexp.com/public_html/wordpress/exo-theme/wp-content/plugins/contact-form-7/wp-contact-form-7.php\";i:5;s:119:\"/home/nginx/tn.joomexp.com/public_html/wordpress/exo-theme/wp-content/plugins/wordpress-importer/wordpress-importer.php\";}", "no");
INSERT INTO `wp_options` VALUES("41", "template", "mdeal", "yes");
INSERT INTO `wp_options` VALUES("42", "stylesheet", "mdeal", "yes");
INSERT INTO `wp_options` VALUES("43", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("44", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("45", "comment_registration", "0", "yes");
INSERT INTO `wp_options` VALUES("46", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("47", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("48", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("49", "db_version", "35700", "yes");
INSERT INTO `wp_options` VALUES("50", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("51", "upload_path", "", "yes");
INSERT INTO `wp_options` VALUES("52", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("53", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("54", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("55", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("56", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("57", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("58", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("59", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("60", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("61", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("62", "medium_size_w", "600", "yes");
INSERT INTO `wp_options` VALUES("63", "medium_size_h", "600", "yes");
INSERT INTO `wp_options` VALUES("64", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("65", "large_size_w", "1170", "yes");
INSERT INTO `wp_options` VALUES("66", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("67", "image_default_link_type", "", "yes");
INSERT INTO `wp_options` VALUES("68", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("69", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("70", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("71", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("72", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("73", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("74", "page_comments", "0", "yes");
INSERT INTO `wp_options` VALUES("75", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("76", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("77", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("78", "sticky_posts", "a:2:{i:0;i:657;i:1;i:635;}", "yes");
INSERT INTO `wp_options` VALUES("79", "widget_categories", "a:4:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:4;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");
INSERT INTO `wp_options` VALUES("80", "widget_text", "a:6:{i:2;a:3:{s:5:\"title\";s:11:\"ABOUT MDEAL\";s:4:\"text\";s:395:\"<div class=\"footer-intro\">\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec ornare massa in urna ultricies varius. Nunc consequat fringilla maximus. </p>\r\n<p>Duis ac luctus est. Donec convallis tortor ac elementum luctus. Donec semper metus sit amet feugiat interdum. Sed mattis placerat lorem ut condimentum. Mauris condimentum risus ligula, ut auctor eros dictum </p>\r\n</div>\";s:6:\"filter\";b:0;}i:3;a:3:{s:5:\"title\";s:12:\"TWITTER FEED\";s:4:\"text\";s:928:\"<ul id=\"twitter_update_list\" class=\"widget-twitter\">\r\n\r\n        <li>\r\n     	     	<div class=\"description\"><img src=\"http://pbs.twimg.com/profile_images/655904741617086464/nwevoHSQ_normal.png\" alt=\"avata\">\r\n	        <span>@Envato: </span>\r\n	        <span>Celebrating\'s always better with cake. Thanks for the congratulatory sugar rush @commbank! <a href=\"https://t.co/44GbIMkWLQ\">https://t.co/44GbIMkWLQ</a></span>\r\n	    </div>   \r\n	    <div class=\"date\">\r\n	    	<span>6 hours ago </span>\r\n	    </div>	\r\n     </li>\r\n        <li>\r\n     	     	<div class=\"description\"><img src=\"http://pbs.twimg.com/profile_images/655904741617086464/nwevoHSQ_normal.png\" alt=\"avata\">\r\n	        <span>@Envato: </span>\r\n	        <span>@MZBS We might be doing something. ;) Probably worth keeping an eye on @EnvatoMarket tomorrow.</span>\r\n	    </div>   \r\n	    <div class=\"date\">\r\n	    	<span>6 hours ago </span>\r\n	    </div>	\r\n     </li>\r\n     </ul>\";s:6:\"filter\";b:0;}i:4;a:3:{s:5:\"title\";s:12:\"CONTACT INFO\";s:4:\"text\";s:543:\"<div class=\"contact-info\">\r\n    <span class=\"description\"> Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras eleifend egestas justo.</span>\r\n<ul class=\"contact-info\"><li><span><i class=\"fa fa-home\"></i> 2 Queen Street,California, USA </span> </li>\r\n<li><span><i class=\"fa fa-mobile-phone\"></i> (+84) 04 123 456</span></li>\r\n<li><a href=\"mailto:info@yourstore.com\"><i class=\"fa fa-envelope-o\"></i> info@yourstore.com</a> </li>\r\n<li><span><i class=\"fa fa-skype\"></i> skype</span> </li>\r\n</ul></div>\";s:6:\"filter\";b:0;}i:5;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:173:\"<div> Copyright © 2015 PLtheme College. All rights reserved. </div>\r\n<div> Responsive Wordpress theme, developed by <a href=\"http://mdeal.pltheme.com\">PLtheme </a> </div>\r\n\";s:6:\"filter\";b:0;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:316:\"<P>Fusce tristique ligula nec massa mollis commodo. In at velit mi, nec tempus dui. Sed eleifend tortor eget mauris laoreet semper. Aliquam et turpis vel sapien tincidunt imperdiet.</p>\r\n<P><iframe src=\"https://player.vimeo.com/video/127790272\" style=\"width:100%; height:250px\" allowfullscreen=\"\"></iframe></P><br />\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("81", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("82", "uninstall_plugins", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("83", "timezone_string", "", "yes");
INSERT INTO `wp_options` VALUES("84", "page_for_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("85", "page_on_front", "17274", "yes");
INSERT INTO `wp_options` VALUES("86", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("87", "link_manager_enabled", "0", "yes");
INSERT INTO `wp_options` VALUES("88", "initial_db_version", "29630", "yes");
INSERT INTO `wp_options` VALUES("89", "wp_user_roles", "a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:131:{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:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:3:{s:4:\"read\";b:1;s:10:\"edit_posts\";b:0;s:12:\"delete_posts\";b:0;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop Manager\";s:12:\"capabilities\";a:110:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:15:\"unfiltered_html\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}}", "yes");
INSERT INTO `wp_options` VALUES("90", "widget_search", "a:2:{i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("91", "widget_recent-posts", "a:2:{i:2;a:3:{s:5:\"title\";s:20:\"Latest From The Blog\";s:6:\"number\";i:4;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("92", "widget_recent-comments", "a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:4;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("93", "widget_archives", "a:3:{i:3;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:4;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("94", "widget_meta", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("95", "sidebars_widgets", "a:20:{s:18:\"orphaned_widgets_1\";a:0:{}s:19:\"wp_inactive_widgets\";a:9:{i:0;s:18:\"cs-tweets-widget-2\";i:1;s:18:\"cs-tweets-widget-3\";i:2;s:17:\"recent-posts-v1-2\";i:3;s:17:\"recent-posts-v1-3\";i:4;s:17:\"recent-posts-v1-4\";i:5;s:18:\"cs_social_widget-2\";i:6;s:18:\"cs_social_widget-3\";i:7;s:14:\"recent-posts-2\";i:8;s:8:\"search-3\";}s:19:\"cshero-blog-sidebar\";a:1:{i:0;s:10:\"nav_menu-2\";}s:18:\"cshero-widget-left\";a:3:{i:0;s:17:\"recent-comments-2\";i:1;s:12:\"categories-2\";i:2;s:11:\"tag_cloud-2\";}s:19:\"cshero-widget-right\";a:5:{i:0;s:19:\"cs_recent_post_v2-2\";i:1;s:12:\"categories-4\";i:2;s:11:\"tag_cloud-4\";i:3;s:10:\"archives-3\";i:4;s:10:\"calendar-2\";}s:25:\"cshero-widget-hidden-menu\";a:6:{i:0;s:17:\"recent-comments-3\";i:1;s:12:\"categories-3\";i:2;s:11:\"tag_cloud-3\";i:3;s:10:\"archives-4\";i:4;s:10:\"calendar-3\";i:5;s:21:\"cs_instagram_widget-3\";}s:26:\"cshero-header-top-widget-1\";a:4:{i:0;s:21:\"ns_widget_mailchimp-2\";i:1;s:18:\"cs-tweets-widget-5\";i:2;s:21:\"cs_instagram_widget-4\";i:3;s:18:\"ft_flickr_widget-2\";}s:26:\"cshero-header-top-widget-2\";a:0:{}s:26:\"cshero-header-top-widget-3\";a:0:{}s:30:\"cshero-header-content-widget-1\";a:0:{}s:22:\"cshero-footer-widget-1\";a:1:{i:0;s:6:\"text-2\";}s:22:\"cshero-footer-widget-2\";a:1:{i:0;s:6:\"text-3\";}s:22:\"cshero-footer-widget-3\";a:1:{i:0;s:6:\"text-4\";}s:22:\"cshero-footer-widget-4\";a:1:{i:0;s:18:\"ft_flickr_widget-3\";}s:33:\"cshero-slidingbar-bottom-widget-1\";a:1:{i:0;s:6:\"text-5\";}s:33:\"cshero-slidingbar-bottom-widget-2\";a:1:{i:0;s:18:\"cs_social_widget-5\";}s:23:\"woocommerce-widget-area\";a:1:{i:0;s:18:\"cs_social_widget-4\";}s:23:\"woocommerce-cart-header\";a:0:{}s:8:\"Megamenu\";a:1:{i:0;s:6:\"text-6\";}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("139434", "rewrite_rules", "a:235:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:12:\"myclients/?$\";s:29:\"index.php?post_type=myclients\";s:42:\"myclients/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=myclients&feed=$matches[1]\";s:37:\"myclients/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?post_type=myclients&feed=$matches[1]\";s:29:\"myclients/page/([0-9]{1,})/?$\";s:47:\"index.php?post_type=myclients&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s: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:54:\"index.php?testimonial_tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?testimonial_tag=$matches[1]&feed=$matches[2]\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?testimonial_tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:37:\"index.php?testimonial_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: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:34:\"header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"header/([^/]+)/embed/?$\";s:39:\"index.php?header=$matches[1]&embed=true\";s:27:\"header/([^/]+)/trackback/?$\";s:33:\"index.php?header=$matches[1]&tb=1\";s:35:\"header/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?header=$matches[1]&paged=$matches[2]\";s:42:\"header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?header=$matches[1]&cpage=$matches[2]\";s:31:\"header/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?header=$matches[1]&page=$matches[2]\";s:23:\"header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"myclients/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"myclients/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"myclients/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"myclients/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"myclients/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"myclients/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"myclients/([^/]+)/embed/?$\";s:42:\"index.php?myclients=$matches[1]&embed=true\";s:30:\"myclients/([^/]+)/trackback/?$\";s:36:\"index.php?myclients=$matches[1]&tb=1\";s:50:\"myclients/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?myclients=$matches[1]&feed=$matches[2]\";s:45:\"myclients/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?myclients=$matches[1]&feed=$matches[2]\";s:38:\"myclients/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?myclients=$matches[1]&paged=$matches[2]\";s:45:\"myclients/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?myclients=$matches[1]&cpage=$matches[2]\";s:34:\"myclients/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?myclients=$matches[1]&page=$matches[2]\";s:26:\"myclients/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"myclients/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"myclients/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"myclients/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"myclients/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"myclients/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"clientscategory/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?clientscategory=$matches[1]&feed=$matches[2]\";s:51:\"clientscategory/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?clientscategory=$matches[1]&feed=$matches[2]\";s:44:\"clientscategory/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?clientscategory=$matches[1]&paged=$matches[2]\";s:26:\"clientscategory/([^/]+)/?$\";s:37:\"index.php?clientscategory=$matches[1]\";s:35:\"portfolio/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"portfolio/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"portfolio/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"portfolio/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"portfolio/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"portfolio/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"portfolio/(.+?)/embed/?$\";s:42:\"index.php?portfolio=$matches[1]&embed=true\";s:28:\"portfolio/(.+?)/trackback/?$\";s:36:\"index.php?portfolio=$matches[1]&tb=1\";s:36:\"portfolio/(.+?)/page/?([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&paged=$matches[2]\";s:43:\"portfolio/(.+?)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?portfolio=$matches[1]&cpage=$matches[2]\";s:32:\"portfolio/(.+?)(?:/([0-9]+))?/?$\";s:48:\"index.php?portfolio=$matches[1]&page=$matches[2]\";s:59:\"portfolio_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio_category=$matches[1]&feed=$matches[2]\";s:47:\"portfolio_category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio_category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio_category/([^/]+)/?$\";s:40:\"index.php?portfolio_category=$matches[1]\";s:35:\"pricing/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"pricing/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"pricing/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"pricing/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"pricing/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"pricing/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"pricing/([^/]+)/embed/?$\";s:40:\"index.php?pricing=$matches[1]&embed=true\";s:28:\"pricing/([^/]+)/trackback/?$\";s:34:\"index.php?pricing=$matches[1]&tb=1\";s:36:\"pricing/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?pricing=$matches[1]&paged=$matches[2]\";s:43:\"pricing/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?pricing=$matches[1]&cpage=$matches[2]\";s:32:\"pricing/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?pricing=$matches[1]&page=$matches[2]\";s:24:\"pricing/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"pricing/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"pricing/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"pricing/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"pricing/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"pricing/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"pricing_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?pricing_category=$matches[1]&feed=$matches[2]\";s:52:\"pricing_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?pricing_category=$matches[1]&feed=$matches[2]\";s:45:\"pricing_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?pricing_category=$matches[1]&paged=$matches[2]\";s:27:\"pricing_category/([^/]+)/?$\";s:38:\"index.php?pricing_category=$matches[1]\";s:32:\"team/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"team/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"team/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"team/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"team/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"team/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"team/([^/]+)/embed/?$\";s:37:\"index.php?team=$matches[1]&embed=true\";s:25:\"team/([^/]+)/trackback/?$\";s:31:\"index.php?team=$matches[1]&tb=1\";s:33:\"team/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?team=$matches[1]&paged=$matches[2]\";s:40:\"team/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?team=$matches[1]&cpage=$matches[2]\";s:29:\"team/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?team=$matches[1]&page=$matches[2]\";s:21:\"team/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"team/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"team/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"team/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"team/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"team/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"team_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?team_category=$matches[1]&feed=$matches[2]\";s:49:\"team_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?team_category=$matches[1]&feed=$matches[2]\";s:42:\"team_category/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?team_category=$matches[1]&paged=$matches[2]\";s:24:\"team_category/([^/]+)/?$\";s:35:\"index.php?team_category=$matches[1]\";s:39:\"testimonial/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"testimonial/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"testimonial/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"testimonial/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"testimonial/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"testimonial/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"testimonial/([^/]+)/embed/?$\";s:44:\"index.php?testimonial=$matches[1]&embed=true\";s:32:\"testimonial/([^/]+)/trackback/?$\";s:38:\"index.php?testimonial=$matches[1]&tb=1\";s:40:\"testimonial/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&paged=$matches[2]\";s:47:\"testimonial/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&cpage=$matches[2]\";s:36:\"testimonial/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?testimonial=$matches[1]&page=$matches[2]\";s:28:\"testimonial/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"testimonial/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"testimonial/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"testimonial/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"testimonial/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"testimonial/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"testimonial_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?testimonial_category=$matches[1]&feed=$matches[2]\";s:56:\"testimonial_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?testimonial_category=$matches[1]&feed=$matches[2]\";s:49:\"testimonial_category/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?testimonial_category=$matches[1]&paged=$matches[2]\";s:31:\"testimonial_category/([^/]+)/?$\";s:42:\"index.php?testimonial_category=$matches[1]\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"essential_grid_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?essential_grid_category=$matches[1]&feed=$matches[2]\";s:59:\"essential_grid_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?essential_grid_category=$matches[1]&feed=$matches[2]\";s:52:\"essential_grid_category/([^/]+)/page/?([0-9]{1,})/?$\";s:63:\"index.php?essential_grid_category=$matches[1]&paged=$matches[2]\";s:34:\"essential_grid_category/([^/]+)/?$\";s:45:\"index.php?essential_grid_category=$matches[1]\";s:42:\"essential_grid/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"essential_grid/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"essential_grid/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"essential_grid/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"essential_grid/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"essential_grid/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"essential_grid/([^/]+)/embed/?$\";s:47:\"index.php?essential_grid=$matches[1]&embed=true\";s:35:\"essential_grid/([^/]+)/trackback/?$\";s:41:\"index.php?essential_grid=$matches[1]&tb=1\";s:43:\"essential_grid/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?essential_grid=$matches[1]&paged=$matches[2]\";s:50:\"essential_grid/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?essential_grid=$matches[1]&cpage=$matches[2]\";s:39:\"essential_grid/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?essential_grid=$matches[1]&page=$matches[2]\";s:31:\"essential_grid/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"essential_grid/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"essential_grid/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"essential_grid/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"essential_grid/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"essential_grid/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:42:\"index.php?&page_id=17274&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: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: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: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: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: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: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");
INSERT INTO `wp_options` VALUES("96", "cron", "a:91:{i:1423492024;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:1423500463;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1423511820;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1423535230;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:1423536887;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:1423668124;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424279736;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424279754;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424279798;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424279821;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424279969;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424280083;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424280098;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424280118;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1424280135;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1425372756;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"e2b95cb9f4eab8a149388a38042f4778\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:2853;}}}}i:1431491652;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ce8a31756b937b529ec4646ab4adae3c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:2960;}}}}i:1432550270;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"abf2723723a661de786d931f8b357075\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:2994;}}}}i:1432719429;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"eb51d6467953d20d4b29a728ad915ad9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3032;}}}}i:1432720342;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c69ff279d70184e0df55f47c7293bd1d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3033;}}}}i:1433207988;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1433208453;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1434008748;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"dd7a80d37821b7eb1dfc07af40759ad9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3668;}}}}i:1434008844;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"8eea4f27b6593d8fd692fd17b56b4be2\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:14208;}}}}i:1435896145;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"f47dafd5c8366b89fe5752ca4188fdb1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:15911;}}}}i:1436190738;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436190988;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436191024;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436191044;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436191070;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436191143;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436191531;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436233487;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436234116;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1436234147;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437128305;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437128370;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437128415;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437128450;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437162706;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437162878;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1437728555;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"802ec36bd5a4b6b4210dd74a53324291\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:17131;}}}}i:1437807852;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"b6c45391edfbfb3f0f43898a04a416e1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:17136;}}}}i:1437807888;a:1:{s:26:\"importer_scheduled_cleanup\";a:1:{s:32:\"dac712c256e57fd361586a61fcf569c8\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:17153;}}}}i:1438912910;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1438919863;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"0d64a47b5dbc5ebd195f0816817fe79f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:17246;}}}}i:1438922891;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"2d10d8b2d02fa8935042d67d9c6503ff\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:17248;}}}}i:1439196232;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"251e199592763c8bd80878737e48df6b\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:17249;}}}}i:1442397473;a:1:{s:22:\"_cron_zencache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1447664972;a:2:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1447668572;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1447718400;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1448928000;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}i:1449382651;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1449383122;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1449383185;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1449417729;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452092892;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452092969;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452093009;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452093125;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452093347;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452187668;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452187808;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452525429;a:1:{s:26:\"wp_split_shared_term_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614458;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614463;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614468;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614483;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614517;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614528;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614578;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614621;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614626;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614635;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614639;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614696;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614701;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452614705;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452615643;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1452615774;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1453430087;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473648571;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473648740;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473648864;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473649058;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473649152;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473649176;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473649413;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1473649472;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("1600", "widget_tag_cloud", "a:4:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}i:3;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}i:4;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("2577", "wpb_js_content_types", "a:2:{i:0;s:4:\"page\";i:1;s:9:\"portfolio\";}", "yes");
INSERT INTO `wp_options` VALUES("2578", "wpb_js_groups_access_rules", "a:4:{s:13:\"administrator\";a:1:{s:4:\"show\";s:3:\"all\";}s:6:\"editor\";a:1:{s:4:\"show\";s:3:\"all\";}s:6:\"author\";a:1:{s:4:\"show\";s:3:\"all\";}s:11:\"contributor\";a:1:{s:4:\"show\";s:3:\"all\";}}", "yes");
INSERT INTO `wp_options` VALUES("131", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("18174", "pricing_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("130", "theme_mods_twentyfourteen", "a:2:{s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:9:\"secondary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1418002976;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:6:\"text-2\";}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");
INSERT INTO `wp_options` VALUES("141", "redux-framework-tracking", "a:4:{s:8:\"dev_mode\";b:0;s:4:\"hash\";s:32:\"0e6b6bcd5f2dde99f241422cfb12689f\";s:14:\"allow_tracking\";s:2:\"no\";s:4:\"tour\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("18173", "portfolio_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("138", "current_theme", "Mdeal", "yes");
INSERT INTO `wp_options` VALUES("139", "theme_mods_wp_spectrum", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:6:{s:15:\"main_navigation\";i:22;s:17:\"sticky_navigation\";i:22;s:14:\"top_navigation\";i:0;s:15:\"left_navigation\";i:0;s:16:\"right_navigation\";i:0;s:9:\"404_pages\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1430963480;s:4:\"data\";a:26:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:8:\"search-3\";}s:19:\"cshero-blog-sidebar\";a:7:{i:0;s:12:\"categories-2\";i:1;s:17:\"recent-posts-v1-2\";i:2;s:17:\"recent-comments-2\";i:3;s:18:\"cs-tweets-widget-2\";i:4;s:11:\"tag_cloud-2\";i:5;s:10:\"archives-3\";i:6;s:10:\"calendar-2\";}s:18:\"cshero-widget-left\";a:2:{i:0;s:17:\"recent-posts-v1-4\";i:1;s:12:\"categories-4\";}s:19:\"cshero-widget-right\";a:7:{i:0;s:12:\"categories-3\";i:1;s:17:\"recent-posts-v1-3\";i:2;s:17:\"recent-comments-3\";i:3;s:18:\"cs-tweets-widget-3\";i:4;s:11:\"tag_cloud-3\";i:5;s:10:\"archives-4\";i:6;s:10:\"calendar-3\";}s:25:\"cshero-widget-hidden-menu\";a:2:{i:0;s:10:\"nav_menu-2\";i:1;s:18:\"cs_social_widget-2\";}s:26:\"cshero-header-top-widget-1\";a:0:{}s:26:\"cshero-header-top-widget-2\";a:0:{}s:30:\"cshero-header-content-widget-1\";a:0:{}s:30:\"cshero-header-content-widget-2\";a:0:{}s:22:\"cshero-bottom-widget-1\";a:0:{}s:22:\"cshero-bottom-widget-2\";a:0:{}s:22:\"cshero-bottom-widget-3\";a:0:{}s:22:\"cshero-bottom-widget-4\";a:0:{}s:22:\"cshero-footer-widget-1\";a:1:{i:0;s:6:\"text-3\";}s:22:\"cshero-footer-widget-2\";a:1:{i:0;s:6:\"text-4\";}s:22:\"cshero-footer-widget-3\";a:1:{i:0;s:18:\"cs_social_widget-3\";}s:22:\"cshero-footer-widget-4\";a:1:{i:0;s:14:\"recent-posts-2\";}s:33:\"cshero-slidingbar-bottom-widget-1\";a:1:{i:0;s:6:\"text-2\";}s:33:\"cshero-slidingbar-bottom-widget-2\";a:0:{}s:28:\"cshero-slidingbar-newsletter\";a:0:{}s:19:\"woocommerce_sidebar\";a:0:{}s:17:\"megamenu_sidebar1\";a:0:{}s:17:\"megamenu_sidebar2\";a:0:{}s:17:\"megamenu_sidebar3\";a:0:{}s:19:\"cshero-debug-widget\";a:0:{}s:27:\"cshero-custom-button-widget\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("140", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("142", "smof_data", "a:312:{s:8:\"last_tab\";s:0:\"\";s:5:\"theme\";s:9:\"Exo_Theme\";s:11:\"page_loader\";s:1:\"0\";s:17:\"page_loader_style\";s:8:\"infinity\";s:14:\"page_loader_bg\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:17:\"page_loader_color\";a:3:{s:5:\"color\";s:7:\"#13151c\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(19,21,28,1)\";}s:18:\"page_loader_color2\";a:3:{s:5:\"color\";s:7:\"#13151c\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(19,21,28,1)\";}s:17:\"logo_page_loading\";a:5:{s:3:\"url\";s:59:\"http://localhost/mdeal2/wp-content/uploads/2015/11/logo.png\";s:2:\"id\";s:5:\"17273\";s:6:\"height\";s:2:\"40\";s:5:\"width\";s:3:\"163\";s:9:\"thumbnail\";s:59:\"http://localhost/mdeal2/wp-content/uploads/2015/11/logo.png\";}s:13:\"smooth_scroll\";s:1:\"0\";s:8:\"dev_mode\";s:0:\"\";s:7:\"favicon\";a:5:{s:3:\"url\";s:62:\"http://localhost/mdeal2/wp-content/uploads/2015/12/favicon.png\";s:2:\"id\";s:5:\"17522\";s:6:\"height\";s:2:\"16\";s:5:\"width\";s:2:\"16\";s:9:\"thumbnail\";s:62:\"http://localhost/mdeal2/wp-content/uploads/2015/12/favicon.png\";}s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:6:\"layout\";s:1:\"0\";s:12:\"layout_width\";s:5:\"980px\";s:19:\"content_boxed_color\";s:7:\"#ffffff\";s:15:\"background-body\";a:7:{s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:6:\"repeat\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:71:\"http://mdeal.pltheme.com/wp-content/uploads/2015/02/polygon-150x150.jpg\";}}s:4:\"logo\";a:5:{s:3:\"url\";s:59:\"http://localhost/mdeal2/wp-content/uploads/2015/12/logo.png\";s:2:\"id\";s:5:\"17465\";s:6:\"height\";s:2:\"40\";s:5:\"width\";s:3:\"142\";s:9:\"thumbnail\";s:59:\"http://localhost/mdeal2/wp-content/uploads/2015/12/logo.png\";}s:10:\"logo_width\";s:4:\"40px\";s:29:\"header_sticky_logo_max_height\";s:4:\"40px\";s:11:\"margin_logo\";s:0:\"\";s:12:\"padding_logo\";s:16:\"0px 0px 0px 10px\";s:13:\"header_layout\";s:2:\"v1\";s:17:\"header_full_width\";s:1:\"0\";s:16:\"header_fixed_top\";s:1:\"0\";s:13:\"menu_position\";s:5:\"right\";s:17:\"background-header\";a:7:{s:16:\"background-color\";s:7:\"#ffffff\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:18:\"header_transparent\";s:3:\"1.0\";s:18:\"header_bg_parallax\";s:1:\"0\";s:19:\"header_border_style\";s:5:\"solid\";s:19:\"header_border_color\";s:7:\"#cccccc\";s:19:\"header_border_width\";s:15:\"0px 0px 1px 0px\";s:13:\"header_margin\";s:0:\"\";s:14:\"header_padding\";s:1:\"0\";s:18:\"header_top_widgets\";s:1:\"0\";s:26:\"header_top_widgets_columns\";s:1:\"2\";s:20:\"header_top_widgets_1\";s:36:\"col-xs-12 col-sm-6 col-md-6 col-lg-6\";s:20:\"header_top_widgets_2\";s:36:\"col-xs-12 col-sm-6 col-md-6 col-lg-6\";s:20:\"header_top_widgets_3\";s:36:\"col-xs-12 col-sm-6 col-md-4 col-lg-4\";s:19:\"header_top_bg_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:5:\"0,0,0\";}s:25:\"header_top_headings_color\";s:0:\"\";s:21:\"header_top_text_color\";s:0:\"\";s:21:\"header_top_link_color\";s:0:\"\";s:27:\"header_top_link_hover_color\";s:0:\"\";s:18:\"header_top_padding\";s:0:\"\";s:22:\"default_search_padding\";s:17:\"0px 10px 0px 10px\";s:30:\"default_hidden_sidebar_padding\";s:12:\"0 5px 0 25px\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"sticky_header_height\";s:4:\"78px\";s:26:\"sticky_border_bottom_image\";s:1:\"0\";s:19:\"border_bottom_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:20:\"border_height_sticky\";s:1:\"0\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:0:\"\";s:10:\"nav_height\";s:4:\"78px\";s:30:\"menu_first_level_text_uppecase\";s:1:\"1\";s:17:\"menu_border_color\";s:7:\"#494c54\";s:13:\"typography_11\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"typography_12\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:13:\"menu_bg_color\";s:0:\"\";s:25:\"menu_fontsize_first_level\";s:4:\"13px\";s:16:\"menu_first_color\";s:7:\"#333c4e\";s:22:\"menu_hover_first_color\";s:7:\"#00acc8\";s:23:\"menu_active_first_color\";s:7:\"#179bb2\";s:25:\"menu_bg_hover_color_first\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:3:\"1.0\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:27:\"menu_bg_actived_color_first\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:3:\"1.0\";s:4:\"rgba\";s:13:\"rgba(0,0,0,1)\";}s:16:\"nav_padding_left\";s:1:\"0\";s:15:\"nav_padding_top\";s:0:\"\";s:17:\"nav_padding_right\";s:2:\"18\";s:18:\"nav_padding_bottom\";s:0:\"\";s:10:\"nav_margin\";s:3:\"0px\";s:17:\"menu_sub_bg_color\";s:7:\"#ffffff\";s:23:\"menu_fontsize_sub_level\";s:4:\"12px\";s:14:\"menu_sub_color\";s:7:\"#929292\";s:19:\"menu_bg_hover_color\";s:11:\"transparent\";s:20:\"menu_sub_hover_color\";s:7:\"#179bb2\";s:21:\"menu_sub_active_color\";s:7:\"#179bb2\";s:18:\"menu_sub_sep_color\";s:7:\"#22242b\";s:20:\"mobile_menu_bg_color\";s:7:\"#ffffff\";s:23:\"mobile_menu_first_color\";s:7:\"#666666\";s:29:\"mobile_menu_hover_first_color\";s:7:\"#00acc8\";s:21:\"mobile_menu_sub_color\";s:7:\"#666666\";s:27:\"mobile_menu_sub_hover_color\";s:7:\"#00acc8\";s:25:\"mobile_menu_sub_sep_color\";s:7:\"#dddddd\";s:21:\"enable_hidden_sidebar\";s:1:\"0\";s:20:\"hidden_sidebar_width\";s:5:\"330px\";s:19:\"hidden_sidebar_icon\";s:13:\"fa fa-refresh\";s:19:\"hidden_sidebar_text\";s:0:\"\";s:31:\"hidden_sidebar_background_color\";s:7:\"#ef634c\";s:25:\"hidden_sidebar_font_color\";s:7:\"#ffffff\";s:13:\"footer_layout\";s:2:\"f1\";s:17:\"footer_full_width\";s:1:\"0\";s:13:\"footer_to_top\";s:1:\"1\";s:18:\"footer_top_widgets\";s:1:\"1\";s:26:\"footer_top_widgets_columns\";s:1:\"4\";s:20:\"footer_top_widgets_1\";s:36:\"col-xs-12 col-sm-6 col-md-3 col-lg-3\";s:20:\"footer_top_widgets_2\";s:36:\"col-xs-12 col-sm-6 col-md-3 col-lg-3\";s:20:\"footer_top_widgets_3\";s:36:\"col-xs-12 col-sm-6 col-md-3 col-lg-3\";s:20:\"footer_top_widgets_4\";s:36:\"col-xs-12 col-sm-6 col-md-3 col-lg-3\";s:21:\"footer_headings_color\";s:7:\"#ffffff\";s:28:\"footer_top_heading_font_size\";s:4:\"18px\";s:28:\"footer_top_heading_uppercase\";s:1:\"1\";s:17:\"footer_text_color\";s:7:\"#a0a0a0\";s:17:\"footer_link_color\";s:7:\"#a0a0a0\";s:23:\"footer_link_hover_color\";s:7:\"#179bb2\";s:19:\"footer_social_color\";s:7:\"#ffffff\";s:25:\"footer_social_hover_color\";s:7:\"#179bb2\";s:23:\"footer_top_border_style\";s:0:\"\";s:23:\"footer_top_border_color\";s:7:\"#444444\";s:23:\"footer_top_border_width\";s:15:\"0px 1px 0px 0px\";s:21:\"background-footer-top\";a:7:{s:16:\"background-color\";s:7:\"#252525\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:22:\"footer_top_bg_parallax\";s:0:\"\";s:18:\"footer_top_padding\";s:13:\"90px 0 70px 0\";s:17:\"footer_top_margin\";s:3:\"0px\";s:17:\"footer_border_img\";s:1:\"1\";s:24:\"footer_border_img_select\";a:5:{s:3:\"url\";s:78:\"http://mdeal.pltheme.com/wp-content/themes/exo-theme/images/bg-line-footer.png\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:24:\"footer_border_img_height\";s:3:\"5px\";s:25:\"footer_border_color_arrow\";s:7:\"#ffffff\";s:19:\"enable_curve_footer\";s:1:\"0\";s:18:\"curve_footer_color\";s:7:\"#ffffff\";s:19:\"curve_footer_height\";s:4:\"25px\";s:21:\"footer_bottom_widgets\";s:1:\"1\";s:29:\"footer_bottom_widgets_columns\";s:1:\"2\";s:23:\"footer_bottom_widgets_1\";s:36:\"col-xs-12 col-sm-6 col-md-6 col-lg-6\";s:23:\"footer_bottom_widgets_2\";s:36:\"col-xs-12 col-sm-6 col-md-6 col-lg-6\";s:34:\"text_align_footer_bottom_widgets_1\";s:4:\"left\";s:34:\"text_align_footer_bottom_widgets_2\";s:5:\"right\";s:22:\"footer_bottom_bg_color\";s:7:\"#1c1c1c\";s:28:\"footer_bottom_headings_color\";s:7:\"#222222\";s:24:\"footer_bottom_text_color\";s:7:\"#a0a0a0\";s:24:\"footer_bottom_link_color\";s:7:\"#179bb2\";s:30:\"footer_bottom_link_hover_color\";s:7:\"#ffffff\";s:26:\"footer_bottom_border_style\";s:0:\"\";s:26:\"footer_bottom_border_color\";s:7:\"#e9e9e9\";s:26:\"footer_bottom_border_width\";s:15:\"1px 0px 0px 0px\";s:21:\"footer_bottom_padding\";s:6:\"40px 0\";s:20:\"footer_bottom_margin\";s:0:\"\";s:16:\"button_uppercase\";s:1:\"1\";s:18:\"button_padding_top\";s:3:\"8px\";s:20:\"button_padding_right\";s:3:\"8px\";s:21:\"button_padding_bottom\";s:3:\"8px\";s:19:\"button_padding_left\";s:3:\"8px\";s:13:\"button_margin\";s:8:\"20px 0px\";s:16:\"button_font_size\";s:4:\"14px\";s:19:\"button_border_style\";s:5:\"solid\";s:19:\"button_border_color\";s:7:\"#ffffff\";s:25:\"button_border_color_hover\";s:7:\"#ffffff\";s:19:\"button_border_width\";s:15:\"1px 1px 1px 1px\";s:17:\"button_border_top\";s:1:\"1\";s:19:\"button_border_right\";s:1:\"1\";s:20:\"button_border_bottom\";s:1:\"1\";s:18:\"button_border_left\";s:1:\"1\";s:20:\"button_border_radius\";s:3:\"0px\";s:26:\"button_gradient_text_color\";s:7:\"#ffffff\";s:32:\"button_gradient_text_color_hover\";s:7:\"#13151c\";s:25:\"button_gradient_top_color\";a:3:{s:5:\"color\";s:7:\"#36ccb2\";s:5:\"alpha\";s:4:\"0.00\";s:4:\"rgba\";s:18:\"rgba(54,204,178,0)\";}s:31:\"button_gradient_top_color_hover\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,255,255,1)\";}s:24:\"button_primary_font_size\";s:4:\"16px\";s:27:\"button_primary_border_style\";s:5:\"solid\";s:27:\"button_primary_border_color\";s:7:\"#222222\";s:33:\"button_primary_border_color_hover\";s:7:\"#00accb\";s:27:\"button_primary_border_width\";s:15:\"1px 1px 1px 1px\";s:25:\"button_primary_border_top\";s:1:\"1\";s:27:\"button_primary_border_right\";s:1:\"1\";s:28:\"button_primary_border_bottom\";s:1:\"1\";s:26:\"button_primary_border_left\";s:1:\"1\";s:28:\"button_primary_border_radius\";s:3:\"0px\";s:25:\"button_primary_text_color\";s:7:\"#222222\";s:31:\"button_primary_text_color_hover\";s:7:\"#ffffff\";s:31:\"button_primary_background_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:4:\"0.00\";s:4:\"rgba\";s:19:\"rgba(255,255,255,0)\";}s:37:\"button_primary_background_color_hover\";a:3:{s:5:\"color\";s:7:\"#00accb\";s:5:\"alpha\";s:4:\"1.00\";s:4:\"rgba\";s:17:\"rgba(0,172,203,1)\";}s:20:\"page_title_bar_align\";s:4:\"left\";s:16:\"title_bar_length\";s:2:\"20\";s:14:\"title_bar_size\";s:4:\"18px\";s:16:\"page_title_color\";s:7:\"#222222\";s:19:\"page_subtitle_color\";s:7:\"#222222\";s:23:\"page_title_border_color\";s:7:\"#f5f5f5\";s:21:\"page_title_border_top\";s:0:\"\";s:24:\"page_title_border_bottom\";s:0:\"\";s:21:\"background-page-title\";a:7:{s:16:\"background-color\";s:7:\"#f5f5f5\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:22:\"page_title_bg_parallax\";s:1:\"1\";s:18:\"page_title_padding\";s:6:\"34px 0\";s:17:\"page_title_margin\";s:10:\"0 0 30px 0\";s:15:\"breadcrumb_show\";s:1:\"1\";s:17:\"breadcrumb_mobile\";s:1:\"1\";s:21:\"breadcrumb_text_align\";s:5:\"right\";s:21:\"breacrumb_home_prefix\";s:4:\"Home\";s:22:\"breadcrumbs_text_color\";s:7:\"#222222\";s:24:\"breadcrumbs_item_padding\";s:10:\"0 10px 0 0\";s:21:\"breadcrumbs_separator\";s:1:\"/\";s:13:\"primary_color\";s:7:\"#01abce\";s:21:\"primary_color_minimal\";s:7:\"#01abce\";s:15:\"secondary_color\";s:7:\"#9ddd7c\";s:13:\"form_bg_color\";s:11:\"transparent\";s:15:\"form_text_color\";s:7:\"#888888\";s:19:\"form_field_bg_color\";s:7:\"#f5f5f5\";s:25:\"form_field_bg_color_hover\";s:7:\"#ffffff\";s:17:\"form_border_style\";s:5:\"solid\";s:17:\"form_border_width\";s:3:\"1px\";s:17:\"form_border_color\";s:7:\"#e9e9e9\";s:23:\"form_border_color_hover\";s:7:\"#e9e9e9\";s:11:\"form_shadow\";s:0:\"\";s:17:\"form_shadow_hover\";s:0:\"\";s:18:\"form_border_radius\";s:0:\"\";s:16:\"content_bg_color\";s:0:\"\";s:16:\"bg_content_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"bg_content_full\";s:1:\"1\";s:17:\"bg_content_repeat\";s:6:\"repeat\";s:20:\"main_content_padding\";s:0:\"\";s:23:\"main_content_margin_top\";s:0:\"\";s:26:\"main_content_margin_bottom\";s:0:\"\";s:10:\"link_color\";s:7:\"#13151c\";s:16:\"link_color_hover\";s:7:\"#01abce\";s:12:\"typography_0\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"22px\";s:5:\"color\";s:7:\"#13151c\";}s:12:\"typography_2\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_2\";s:28:\".btn, .agency1 .counter_text\";s:13:\"typography_h1\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"30px\";s:11:\"line-height\";s:4:\"30px\";s:5:\"color\";s:7:\"#333333\";}s:13:\"typography_h2\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"25px\";s:11:\"line-height\";s:4:\"25px\";s:5:\"color\";s:7:\"#333333\";}s:13:\"typography_h3\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"22px\";s:11:\"line-height\";s:4:\"22px\";s:5:\"color\";s:7:\"#333333\";}s:13:\"typography_h4\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"20px\";s:5:\"color\";s:7:\"#333333\";}s:13:\"typography_h5\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"20px\";s:5:\"color\";s:7:\"#333333\";}s:13:\"typography_h6\";a:11:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:4:\"20px\";s:5:\"color\";s:7:\"#333333\";}s:12:\"typography_3\";a:11:{s:11:\"font-family\";s:4:\"Lato\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"18px\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_3\";s:85:\"#cs-page-title-wrapper .title_bar, #cs-page-title-wrapper .title_bar .sub_header_text\";s:12:\"typography_4\";a:11:{s:11:\"font-family\";s:4:\"Lato\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_4\";s:11:\".tagcloud a\";s:12:\"typography_5\";a:11:{s:11:\"font-family\";s:12:\"Merriweather\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"300\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:4:\"15px\";s:11:\"line-height\";s:4:\"30px\";s:5:\"color\";s:7:\"#96989b\";}s:21:\"typography_selector_5\";s:205:\".agency1 p, .agency1 .cshero-fancybox-padding .content, .agency1 div.cshero-fancybox-content > div, .agency1 .list li, agency1 .cshero-testimonial-text, agency1-light .cshero-testimonial-text, .light-lists\";s:12:\"typography_6\";a:11:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_6\";s:0:\"\";s:12:\"typography_7\";a:11:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_7\";s:0:\"\";s:12:\"typography_8\";a:11:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_8\";s:0:\"\";s:12:\"typography_9\";a:11:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:21:\"typography_selector_9\";s:0:\"\";s:13:\"typography_10\";a:11:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:22:\"typography_selector_10\";s:0:\"\";s:18:\"typography_local_1\";s:0:\"\";s:27:\"typography_local_selector_1\";s:0:\"\";s:18:\"typography_local_2\";s:0:\"\";s:27:\"typography_local_selector_2\";s:0:\"\";s:18:\"typography_local_3\";s:0:\"\";s:27:\"typography_local_selector_3\";s:0:\"\";s:11:\"blog_layout\";s:11:\"right-fixed\";s:18:\"blog_title_heading\";s:2:\"h2\";s:17:\"blog_full_content\";s:1:\"1\";s:16:\"introtext_length\";s:2:\"60\";s:14:\"search_heading\";s:0:\"\";s:17:\"search_page_title\";s:1:\"1\";s:27:\"search_page_title_animation\";s:0:\"\";s:18:\"search_breadcrumbs\";s:0:\"\";s:11:\"search_view\";s:7:\"Excerpt\";s:15:\"archive_heading\";s:0:\"\";s:18:\"archive_page_title\";s:1:\"1\";s:28:\"archive_page_title_animation\";s:0:\"\";s:19:\"archive_breadcrumbs\";s:0:\"\";s:19:\"archive_posts_title\";s:1:\"1\";s:17:\"show_full_content\";s:0:\"\";s:19:\"archive_date_format\";s:7:\"F dS ,Y\";s:12:\"archive_post\";s:4:\"base\";s:15:\"post_page_title\";s:1:\"1\";s:21:\"post_page_title_color\";s:7:\"#ffffff\";s:24:\"post_page_subtitle_color\";s:7:\"#ffffff\";s:25:\"post_page_title_animation\";s:1:\"1\";s:16:\"post_breadcrumbs\";s:1:\"1\";s:22:\"post_breadcrumbs_color\";s:7:\"#ffffff\";s:15:\"show_post_title\";s:1:\"0\";s:19:\"show_post_thumbnail\";s:1:\"0\";s:18:\"show_comments_post\";s:1:\"1\";s:14:\"show_tags_post\";s:1:\"1\";s:16:\"show_social_post\";s:1:\"1\";s:20:\"show_navigation_post\";s:1:\"1\";s:11:\"post_layout\";s:11:\"right-fixed\";s:10:\"post_style\";s:4:\"base\";s:20:\"post_featured_images\";s:1:\"1\";s:16:\"post_date_format\";s:5:\"m.d.Y\";s:12:\"page_heading\";s:0:\"\";s:15:\"page_page_title\";s:1:\"1\";s:25:\"page_page_title_animation\";s:0:\"\";s:16:\"page_breadcrumbs\";s:1:\"1\";s:18:\"show_comments_page\";s:1:\"0\";s:11:\"page_layout\";s:10:\"full-fixed\";s:20:\"page_featured_images\";s:1:\"1\";s:20:\"detail_title_heading\";s:2:\"h3\";s:13:\"detail_detail\";s:1:\"1\";s:11:\"detail_date\";s:1:\"1\";s:13:\"detail_author\";s:0:\"\";s:15:\"detail_category\";s:0:\"\";s:11:\"detail_tags\";s:0:\"\";s:15:\"detail_comments\";s:0:\"\";s:11:\"detail_like\";s:0:\"\";s:13:\"detail_social\";s:0:\"\";s:24:\"disnable_page_title_team\";s:1:\"1\";s:15:\"team_breadcrumb\";s:1:\"1\";s:21:\"page_title_upper_team\";s:1:\"1\";s:29:\"disnable_page_title_portfolio\";s:1:\"1\";s:26:\"page_title_upper_portfolio\";s:1:\"0\";s:27:\"pt_testimonial_images_width\";s:5:\"100px\";s:28:\"pt_testimonial_images_height\";s:5:\"100px\";s:34:\"pt_testimonial_desciption_fontsize\";s:4:\"16px\";s:27:\"woo_breadcrumbs_color_hover\";s:0:\"\";s:16:\"use_font_awesome\";s:1:\"1\";s:17:\"use_font_ionicons\";s:1:\"1\";s:11:\"404_heading\";s:0:\"\";s:14:\"404_page_title\";s:1:\"1\";s:24:\"404_page_title_animation\";s:0:\"\";s:15:\"404_breadcrumbs\";s:1:\"1\";s:8:\"404_type\";s:7:\"Default\";s:9:\"404_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"404_page_id\";s:0:\"\";s:10:\"custom_css\";s:653:\"                    #wpcf7-f1465-p16421-o1 label {color:#fff;}\r\n\r\n.agency1letterspace, .agency1letterspace .cshero-title-main {letter-spacing:5px;}\r\n\r\n.agency1 .portfolio-layout1 .cshero-portfolio-content-wrapper {\r\n  background: rgba(19, 21, 28, 0.9);\r\n}\r\n\r\n\r\n.agency1 .magazine_posts-layout1 .magazine-post-featured p, .agency1 .magazine_posts-layout1 h3 a, .agency1-light .magazine_posts-layout1 .magazine-post-featured {color:#fff !important;}\r\n\r\n.agency1 .magazine_posts-layout1 .magazine-post-lists .cs-blog-content {border-bottom:#36383f;}\r\n\r\n.agency1-light .magazine_posts-layout1 .post-list-item h3 a {color:#13151c !important;}                \";}", "yes");
INSERT INTO `wp_options` VALUES("139415", "_site_transient_timeout_browser_12ee80464124007ce3c672f15bcfa96b", "1475764528", "yes");
INSERT INTO `wp_options` VALUES("139416", "_site_transient_browser_12ee80464124007ce3c672f15bcfa96b", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.116\";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;}", "yes");
INSERT INTO `wp_options` VALUES("139444", "_transient_feed_7fa907073bddbc2fc2b2bb18c9dfef16", "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:15:\"Redux Framework\";s:7:\"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://reduxframework.com\";s: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:42:\"The definitive WordPress options framework\";s: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:\"Tue, 20 Sep 2016 01:12:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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:30:\"https://wordpress.org/?v=4.6.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:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Theme-Check Compliant, at Long Last\";s:7:\"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:57:\"https://reduxframework.com/2015/07/theme-check-compliant/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://reduxframework.com/2015/07/theme-check-compliant/#comments\";s: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, 04 Jul 2015 20: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";s:7:\"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://reduxframework.com/?p=3403\";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:138:\"For a long time now, we&#8217;ve wanted Redux Framework to be Theme-Check compliant. The two factors preventing this were mainly [&#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:4:\"Dovy\";s: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:2788:\"<p>For a long time now, we&#8217;ve wanted Redux Framework to be Theme-Check compliant. The two factors preventing this were mainly WP FileSystem API failure (we included some hardcoded fallbacks in place), and vendor files (other projects we utilize). Today, we are proud to announce that the most recent <a href=\"http://github.com/ReduxFramework/redux-framework\" target=\"_blank\">development build</a> of Redux will pass Theme-Check with flying colors!</p>\n<div class=\"tip-box\"><span class=\"box-icon\"> </span>And on that note, may freedom ring! Happy Independence Day America! <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></div>\n<p>We took a hard look at all things within Redux that made Theme-Check bark like a schizophrenic dog. Honestly, we didn&#8217;t do anything horrible, we simply used direct functions rather than letting WordPress run the same functions. So, we decided to make the plunge. We shifted all file input/output to the WP Filesystem and made the changes to our Redux_Filesystem proxy class to handle our problem cases. We also removed a few URLs here, and some function names there.</p>\n<p>We also embedded some really useful custom Theme-Check checks to further assist developers in submitting their themes to marketplaces. We want you &#8211; as developers &#8211; to know exactly what you need to do to comply. We also added a custom WP.org check, to further help WP.org theme developers.</p>\n<p>Our next step is to add proper escaping to our field HTML output. Though Redux already escapes properly &#8211; since we use the WordPress settings API &#8211; we wanted to ensure you don&#8217;t have to tell your reviewers anything. We don&#8217;t want our code to be the cause of your work being flagged by marketplace reviewers. If we already escape something, we&#8217;ll add an inline comment so reviewers know what we are doing.</p>\n<p>In the end, we seek to comply. We want to ensure Redux is for for the masses and ready for any marketplace (no matter how specific the rules may be).</p>\n<h3>We Need Your Help!</h3>\n<p>Please test the <a href=\"http://github.com/ReduxFramework/redux-framework\" target=\"_blank\">development build</a> of Redux Framework in your own theme. Try out Theme-Check, and make sure we didn’t break anything. The sooner we have more eyes on these improvements, the sooner we’ll be able to make an official release, and the sooner we can push down some of our customizer fixes.   <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p>As always, a special thank you our developers. We hope you like Redux and that it makes your life easier.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://reduxframework.com/2015/07/theme-check-compliant/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"3403\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Updated WordPress.org Theme Requirements\";s:7:\"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://reduxframework.com/2015/04/updated-wordpress-org-theme-requirements/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://reduxframework.com/2015/04/updated-wordpress-org-theme-requirements/#comments\";s: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, 22 Apr 2015 21:27: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";s:7:\"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:33:\"http://reduxframework.com/?p=2792\";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:121:\"To all devs who develop themes on WordPress.org. There is a new requirement that will go into effect within 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:5:\"Kevin\";s: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:2142:\"<p>To all devs who develop <strong>themes</strong> on WordPress.org. There is a new requirement that will go into effect within the next 6 months. You can read all the details here: <a href=\"https://make.wordpress.org/themes/2015/04/21/this-weeks-meeting-important-information-regarding-theme-options/\" target=\"_blank\">https://make.wordpress.org/themes/2015/04/21/this-weeks-meeting-important-information-regarding-theme-options</a></p>\n<p>&nbsp;</p>\n<p>Essentially, the WordPress.org themes submission teams is mandating that theme developers ONLY use the Customizer for options.</p>\n<p>&nbsp;</p>\n<p>What does this mean for Redux users? Here are the terms:</p>\n<p>&nbsp;</p>\n<p>In 6 months time, all options MUST be customizer based for themes submitted to WP.org. Redux may be used, but only under these conditions.</p>\n<ul>\n<li>TGM to recommend Redux installed as a plugin OR follow the (instructions to embed Redux in a way that is approved by WP.org)[http://docs.reduxframework.com/core/wordpress-org-submissions/].</li>\n<li>Redux panel must be disabled, and only the `customizer_only` argument used.</li>\n<li>Only Customizer field types may be used. Any field that isn&#8217;t supported by the customizer must be coded by the developer or not used.</li>\n</ul>\n<p>&nbsp;</p>\n<p>These are the following field types that can be used in the customizer, but most cannot have advanced options.</p>\n<ul>\n<li>text</li>\n<li>checkbox</li>\n<li>radio</li>\n<li>select</li>\n<li>textarea</li>\n<li>color</li>\n<li>media</li>\n</ul>\n<p>&nbsp;</p>\n<p>Unfortunately this is beyond our control. You are welcome to voice your opinion if you feel motivated to do so here: <a href=\"https://make.wordpress.org/themes/2015/04/21/this-weeks-meeting-important-information-regarding-theme-options/\" target=\"_blank\">https://make.wordpress.org/themes/2015/04/21/this-weeks-meeting-important-information-regarding-theme-options</a></p>\n<p>&nbsp;</p>\n<p>It seems that any framework, aside from <a href=\"http://kirki.org\" target=\"_blank\">http://kirki.org</a>, should not be used in WordPress.org themes. Please voice your opinion if you have one to the WP.org team.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://reduxframework.com/2015/04/updated-wordpress-org-theme-requirements/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"2792\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Happy Holidays\";s:7:\"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://reduxframework.com/2014/12/happy-holidays/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://reduxframework.com/2014/12/happy-holidays/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Dec 2014 09:26: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";s:7:\"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:33:\"http://reduxframework.com/?p=2093\";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:131:\"Holy cow, it&#8217;s already the end of the year! With no small amount of help from our incredible community, we&#8217;ve [&#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:\"Team Redux\";s: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:504:\"<p><span class=\"drop-caps\">H</span>oly cow, it&#8217;s already the end of the year! With no small amount of help from our incredible community, we&#8217;ve managed to make Redux the definitive options framework for 2014, and we&#8217;re still just getting started! In fact, we&#8217;ve got some big changes coming in 2015 that are going to blow your mind! So buckle up and stay tuned&#8230; 2015 is going to be the Year of Redux!</p>\n<p>Happy Holidays from Team Redux, and have a fantastic new year!</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://reduxframework.com/2014/12/happy-holidays/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"2093\";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:45:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Redux and SASS\";s:7:\"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:46:\"https://reduxframework.com/2014/12/redux-sass/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://reduxframework.com/2014/12/redux-sass/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Dec 2014 05:42:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";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:4:\"sass\";s:7:\"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:33:\"http://reduxframework.com/?p=2070\";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:141:\"Beginning with Redux Framework version 3.3.9.22, we&#8217;ve removed all LESS files from the Redux core and replaced them with SCSS [&#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:5:\"Kevin\";s: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:4664:\"<p><span class=\"drop-caps\">B</span>eginning with Redux Framework version 3.3.9.22, we&#8217;ve removed all <a href=\"http://en.wikipedia.org/wiki/Less_%28stylesheet_language%29\" target=\"_blank\">LESS</a> files from the Redux core and replaced them with <a href=\"http://en.wikipedia.org/wiki/Sass_%28stylesheet_language%29\" target=\"_blank\">SCSS</a> (Sassy CSS) files.</p>\n<p>If you&#8217;re wondering what this means, please use the provided links which will open information pages in new windows.  This article won&#8217;t cover the finer points and debates between SASS and LESS.  That&#8217;s fodder for a completely different article.  <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p>By default Redux now compiles all active field and extension CSS into a single file using the <a href=\"http://en.wikipedia.org/wiki/Sass_%28stylesheet_language%29\" target=\"_blank\">SASS</a> (<b>S</b>yntactically <b>A</b>wesome <b>S</b>tyle<b>s</b>heets) compiler.  When we say &#8216;active&#8217; fields, we mean only fields actually in use.  This, in theory, should speed things up a bit not only be combining only the required CSS into a central file, but by eliminating the need for the enqueuing of multiple CSS files.</p>\n<p>We&#8217;re asking all the Redux aficionados out there to download the latest Redux version for our Github and give the new code a spin.  Should glitches or bugs be found, please report them to us.  We&#8217;d like to get this new code base ironed out for official release by the new year.</p>\n<p>There&#8217;s nothing you need to do special to test out the new code.  Download, install and go!  That said, we&#8217;ve included a new argument array within Redux to deal with specific settings for the SASS compiler.  Consider the following:</p>\n<div id=\"wpshdo_1\" class=\"wp-synhighlighter-outer\"><div id=\"wpshdt_1\" class=\"wp-synhighlighter-expanded\"><table border=\"0\" width=\"100%\"><tr><td align=\"left\" width=\"80%\"><a name=\"#codesyntax_1\"></a><a id=\"wpshat_1\" class=\"wp-synhighlighter-title\" href=\"#codesyntax_1\"  onClick=\"javascript:wpsh_toggleBlock(1)\" title=\"Click to show/hide code block\">Source code</a></td><td align=\"right\"><a href=\"#codesyntax_1\" onClick=\"javascript:wpsh_code(1)\" title=\"Show code only\"><img border=\"0\" style=\"border: 0 none\" src=\"https://reduxframework.com/wp-content/plugins/wp-synhighlight/themes/default/images/code.png\" /></a>&nbsp;<a href=\"#codesyntax_1\" onClick=\"javascript:wpsh_print(1)\" title=\"Print code\"><img border=\"0\" style=\"border: 0 none\" src=\"https://reduxframework.com/wp-content/plugins/wp-synhighlight/themes/default/images/printer.png\" /></a>&nbsp;<a href=\"https://reduxframework.com/wp-content/plugins/wp-synhighlight/About.html\" target=\"_blank\" title=\"Show plugin information\"><img border=\"0\" style=\"border: 0 none\" src=\"https://reduxframework.com/wp-content/plugins/wp-synhighlight/themes/default/images/info.gif\" /></a>&nbsp;</td></tr></table></div><div id=\"wpshdi_1\" class=\"wp-synhighlighter-inner\" style=\"display: block;\"><pre class=\"php\" style=\"font-family:monospace;\"><span class=\"st_h\">\'sass\'</span> <span class=\"sy0\">=&gt;</span> <a href=\"http://www.php.net/array\"><span class=\"kw3\">array</span></a> <span class=\"br0\">&#40;</span>\n    <span class=\"st_h\">\'enabled\'</span>     <span class=\"sy0\">=&gt;</span> <span class=\"kw4\">true</span><span class=\"sy0\">,</span>\n    <span class=\"st_h\">\'page_output\'</span> <span class=\"sy0\">=&gt;</span> <span class=\"kw4\">false</span>\n<span class=\"br0\">&#41;</span><span class=\"sy0\">,</span></pre></div></div>\n<p>These are the defaults set in the Redux core, and argument you could (but don&#8217;t need to) add to the arguments array in your Redux configuration file (within the setArguments() function).</p>\n<p>The enabled argument enabled or disables the SASS compiler.  We at Team Redux enjoy giving our devs the option to enable or disable features as desired.  Setting this argument to false will disable the SASS compiler.  All CSS will then be enqueued separately, just as we&#8217;ve done for so long before adding the SASS compiler option.</p>\n<p>The page_output determines where the SASS compiler output is place.  By default, this option is set to false.  This mean all CSS output is placed into a singular file and placed in the WordPress upload folder.  Setting this argument to true will output the SASS compiled CSS directly into the page itself, in a style tag.</p>\n<p>We here as Team Redux hope you enjoy the new benefits of the SASS compiler in our ever evolving options framework.  Please feel free to leave your comments below!</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://reduxframework.com/2014/12/redux-sass/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"2070\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Sometimes Standards Don’t Always Work – Redux 3.3.4 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:72:\"https://reduxframework.com/2014/07/sometimes-standards-dont-always-work/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://reduxframework.com/2014/07/sometimes-standards-dont-always-work/#comments\";s: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 Jul 2014 00:35: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";s:7:\"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:33:\"http://reduxframework.com/?p=1546\";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:114:\"When we released Redux 3.3.0 on June 8th, 2014, we decided to follow a standard as per the suggestion of [&#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:4:\"Dovy\";s: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:1896:\"<p>When we released Redux 3.3.0 on June 8th, 2014, we decided to follow a standard as per the suggestion of Otto.</p>\n<p>He wrote, “If you need to write files to be included in the page, like stylesheets, then you should make your own folder under <code>/wp-content</code>, not under <code>/wp-content/uploads</code>. The uploads directory should be used strictly for media files and downloads and other things uploaded through the various wp_upload functions.” <a href=\"http://wordpress.stackexchange.com/questions/124900/using-wp-filesystem-in-plugins\" target=\"_blank\">http://wordpress.stackexchange.com/questions/124900/using-wp-filesystem-in-plugins</a></p>\n<p>Believing his advice to be sound, we followed his suggestion. It caused more misery to devs than not. The lingering issue is simple, too many users install WordPress incorrectly. Often the ONLY directory that is writable is <code>/uploads/</code>. Combined that with the file owner of WordPress and the theme/plugin directories often being different, and the 3.3.0 changes have been a disaster in the making.</p>\n<p>As the Redux 3.3.0 code base spread out to our devs, and consequently their users, we received TONS of issues. We’ve worked to resolve each of them, but the fact remains that Otto&#8217;s advice is flawed, and users don’t know how to fix the problems is causes.</p>\n<p>We implemented this great new filesystem code believing it was the correct way to handle local storage, but it will never be used again. We’re writing to our proprietary directory the uploads directory from here on out.</p>\n<p>If anyone wishes to contribute code that works with Otto&#8217;s model, that actually works we would consider switching back. But for now, we choose function over opinion. <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f61b.png\" alt=\"😛\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://reduxframework.com/2014/07/sometimes-standards-dont-always-work/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"1546\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Reduce Your Panel Load Time by 80%\";s:7:\"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:59:\"https://reduxframework.com/2014/06/load-time-reduced-by-80/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://reduxframework.com/2014/06/load-time-reduced-by-80/#comments\";s: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, 12 Jun 2014 01:08: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";s:7:\"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:33:\"http://reduxframework.com/?p=1261\";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:127:\"Okay, so it&#8217;s only been a few days since our last release, and already we have another. We couldn&#8217;t wait, [&#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:4:\"Dovy\";s: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:2762:\"<h3>Okay, so it&#8217;s only been a few days since our last release, and already we have another. We couldn&#8217;t wait, because, this is <strong><em>big</em></strong>! <span style=\"text-decoration: underline;\">We&#8217;ve shaved off the panel load time by up to 80%</span>.</h3>\n<h4>Yeah, you read that correctly. <strong>80 PERCENT!</strong></h4>\n<h6>This means &#8211; for example &#8211; a large option panel of a popular theme that used to take <span class=\"highlight1\">6.8 seconds</span> to load has been reduced to <span class=\"highlight2\">1.47 seconds</span>. We reduced load time for this theme&#8217;s option panel by <strong><span class=\"highlight2\">5.33 seconds</span> </strong> alone!</h6>\n<p>We realized speed was an issue and we went through every field in a concerted effort to determine which ones slowed the panel down the most, we found out that:</p>\n<ul>\n<li>It wasn&#8217;t in the PHP, we optimized all of that with the last release.</li>\n<li>The WordPress color picker in and of itself slows a panel down by up to <span style=\"text-decoration: underline;\">2 seconds</span>!</li>\n<li>The Editor, Ace Editor, and Slider fields slowed the panel down by <span style=\"text-decoration: underline;\">.8 &#8211; 1.2 seconds each</span>.</li>\n</ul>\n<h4>So how did we fix it? By initializing fields on &#8220;demand&#8221;.</h4>\n<p>The problem centered around too much JavaScript begin run on load. Now, with these latest improvements &#8211; the only time a field&#8217;s javascript loads is when it&#8217;s visible. Put another way, what you see on screen is all that&#8217;s affecting the DOM resources. Redux is literally now among &#8211; if not &#8211; one of the fastest frameworks out there.</p>\n<h5>Give it a try. You need only upgrade to see a noticeable difference. Everyone who has tried it, <strong>everyone</strong>, has noticed a difference.</h5>\n<h4>If you like what you see, please do <a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=MMFMHWUPKHKPW\" target=\"_blank\">donate</a>. These improvements required a substantial amount of effort, with no pay or compensation. <a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=MMFMHWUPKHKPW\" target=\"_blank\">A recurring (monthly) subscription of only $10</a> is all it takes for us to keep these improvements coming. Help support the thousands of developer hours that have gone into Redux. You help us, and we&#8217;ll keep making your project development that much easier. </h4>\n<p><center><a href=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&#038;hosted_button_id=MMFMHWUPKHKPW\" target=\"_blank\"><img style=\"height: 55px;\" src=\"/wp-content/uploads/2014/02/Donate-Button.png\" alt=\"Donate Today\" /></a></center></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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://reduxframework.com/2014/06/load-time-reduced-by-80/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"1261\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Redux Framework 3.3.0 Released – “Need for Speed”\";s:7:\"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:77:\"https://reduxframework.com/2014/06/redux-framework-3-3-0-released-need-speed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://reduxframework.com/2014/06/redux-framework-3-3-0-released-need-speed/#comments\";s: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, 08 Jun 2014 23:20: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";s:7:\"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:33:\"http://reduxframework.com/?p=1232\";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:138:\"It&#8217;s with great pleasure that we introduce the release of Redux 3.3.0 A.K.A. &#8220;Need for Speed.&#8221; We began with a [&#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:4:\"Dovy\";s: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:1836:\"<p>It&#8217;s with great pleasure that we introduce the release of Redux 3.3.0 A.K.A. &#8220;Need for Speed.&#8221;</p>\n<p>We began with a rewrite of our typography field, specifically the way in which Google Fonts are loaded. There are dozens upon dozens of them! When devs add multiple Typography fields in their panel, the user experience (load time) becomes quite poor. We&#8217;re pleased to say this issue has been solved with this release. Thanks to the efforts of our main man Kevin, the typography field has be reworked to be much more efficient.</p>\n<p>In addition, we&#8217;ve found a many bugs, fixed some core design issues, added feature requested, and taken Redux to yet another level of stability, all while improving the overall feature set.</p>\n<p>To tie into all these improvements &#8211; and if you didn&#8217;t already know &#8211; the Redux Builder now gives you the option of creating custom builds of Redux with only the fields you specify! The building process has become much more modular, allowing us to providing these great new tools to you so you may lower the footprint of your embedded Redux. <img src=\"https://s.w.org/images/core/emoji/2/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p>As it currently stands, Redux 3.3.0 is the MOST STABLE version of Redux ever. The issues reported to us have become very, very basic. More often than not, we see more feature requests than bugs.</p>\n<p>Now is the time to upgrade Redux Framework your themes. Your users will thank you. We thank you.</p>\n<p>It&#8217;s been a great year thus far, and we look forward to more.</p>\n<p>Finally, in case you&#8217;ve not heard or seen it, you REALLY need to check out http://wpdemo.io, especially if you&#8217;re a developer and want to show-off what your product can do.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://reduxframework.com/2014/06/redux-framework-3-3-0-released-need-speed/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"1232\";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:48:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"A Home Run – The Redux Builder\";s:7:\"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://reduxframework.com/2014/05/redux-builder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://reduxframework.com/2014/05/redux-builder/#comments\";s: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, 27 May 2014 21:22:33 +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:\"Newswire\";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:13:\"redux builder\";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:15:\"redux framework\";s:7:\"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:33:\"http://reduxframework.com/?p=1134\";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:134:\"You know you’ve hit a home run when your business&#8217;s activity doubles within two months and support issues are reduce [&#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:4:\"Dovy\";s: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:2524:\"<p class=\"p1\"><span class=\"s1\">You know you’ve hit a home run when your business&#8217;s activity doubles within two months and support issues are reduce by nearly 1/3.  That’s what has happened with Redux since we launched the <a title=\"Redux Generator\" href=\"http://build.reduxframework.com\" target=\"_blank\">Redux Builder</a>.</span></p>\n<p class=\"p1\">In early March, I conceived the idea to design a site that would auto-generate a Redux<br />\nbuild.  Actually, I wanted to build a fully-fledged panel builder like Option Tree, but with the sheer amount of options available with Redux, the time required would be intense&#8230;and then some.  Instead, I considered building a boilerplate generator for themes.  And what better theme than the ever powerful <a title=\"_s\" href=\"http://underscores.me\" target=\"_blank\">_s</a> by <a title=\"Automattic\" href=\"http://automattic.com/\" target=\"_blank\">Automattic</a>?  I found their generator code and went to town, including a TGM integration, and a slew of Redux arguments.</p>\n<p class=\"p1\">Today, I am extremely pleased to announce we took the project it a step further.  We organized the arguments, gave descriptions, and links for each to our docs site.  We also made it so one could easily export to an admin folder instead of a theme.  This comes in handy for use in existing products and/or plugins.  Lastly, we&#8217;ve now made every Redux field completely independent.  As a result, you can generate a custom build of Redux Framework with your export!</p>\n<p class=\"p1\"> Yes, you read that correctly!  You can make a custom Redux Framework build!  Since one of the biggest complaints about Redux has been its size, weighing in at 6mb for all (34+) fields, the Framework tends to be quite heavy.  Now, that&#8217;s a thing of the past.</p>\n<p class=\"p1\">We’re really excited about the new version of the Redux Builder.  Major props to team member @kprovance for making Redux fields completely modular.</p>\n<p>If you haven’t tried the builder, you SHOULD.  It’s free.  It will save you time.  Oh, and it’s so very choice.</p>\n<h3 class=\"p1\" style=\"text-align: center\"><a title=\"Redux Generator\" href=\"http://build.reduxframework.com\" target=\"_blank\">http://build.reduxframework.com</a></h3>\n<p>&nbsp;</p>\n<p class=\"p1\">Just a gentle reminder, Redux lives by donations and our extensions.  So if you like the generator, please consider donating a small amount to the project.  You support us, and we&#8217;ll keep making cool things.</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://reduxframework.com/2014/05/redux-builder/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"20\";s: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:\"1134\";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:45:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"February Webinar: In Review\";s:7:\"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:59:\"https://reduxframework.com/2014/02/february-webinar-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://reduxframework.com/2014/02/february-webinar-review/#comments\";s: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 Feb 2014 01:09:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";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:7:\"webinar\";s:7:\"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:\"http://reduxframework.com/?p=494\";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:111:\"Those of us at Team Redux would like to extend our sincerest thanks to our users for making this last [&#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:\"Team Redux\";s: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:2188:\"<p>Those of us at Team Redux would like to extend our sincerest thanks to our users for making this last webinar an unprecedented success! As we began the process of writing out the basic structure for the webinar, we had no idea what we were in for. We didn&#8217;t know how many people would show up or even if our users wanted to hear what we had to say. Thankfully, not only did a shocking number of people show up, but the webinar lasted an incredible two full hours!</p>\n<p>&nbsp;</p>\n<p>Beyond the knowledge we hoped to impart to our users, we learned a very important lesson through the webinar as well. We learned that our users <em>want</em> to communicate with us, above and beyond the communication made possible by our Github issue tracker. As such, we have made a decision. Going forward, we will be holding a monthly webinar to give you a view into our world, and us a view into yours! Beyond that, we will be making steps towards a more active blog, and we&#8217;ve got a few other surprises in store for you as well!</p>\n<p>&nbsp;</p>\n<p>Not everyone managed to make it to the webinar&#8230; but that&#8217;s alright, we still love you! Want to see what you&#8217;ve missed? Great! We&#8217;d love to show you! As such, we&#8217;ve made the entire webinar available on <a href=\"http://www.youtube.com/watch?v=ymMpeBaaLXI\" target=\"_blank\">YouTube</a>! Want a copy of the presentation itself? That&#8217;s <a href=\"http://reduxframework.com/?ddownload=498\">available too</a>!</p>\n<p>&nbsp;</p>\n<p><strong>NOTE:</strong> Originally, we had intended this post to include a complete list of the questions asked during the webinar Q&#038;A session. However, given the sheer length of the list, I have decided to split it into its own page which will be kept updated with each new webinar. The list will be posted shortly.</p>\n<p>&nbsp;</p>\n<div class=\"video-wrap\"><p><iframe class=\'youtube-player\' type=\'text/html\' width=\'1032\' height=\'611\' src=\'https://www.youtube.com/embed/ymMpeBaaLXI?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</div>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://reduxframework.com/2014/02/february-webinar-review/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"494\";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:51:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Redux/Simple Options Merger\";s:7:\"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://reduxframework.com/2013/09/reduxsimple-options-merger/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://reduxframework.com/2013/09/reduxsimple-options-merger/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 04 Sep 2013 07:52: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:8:\"Newswire\";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:6:\"merger\";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:14:\"Simple Options\";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:5:{s:4:\"data\";s:3:\"SOF\";s:7:\"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:\"http://reduxframework.com/?p=183\";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:150:\"We&#8217;re proud to announce that Redux Framework has merged with the only other NHP fork we&#8217;ve found that&#8217;s worthwhile, Simple [&#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:9:\"Ghost1227\";s: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:1379:\"<p>We&#8217;re proud to announce that Redux Framework has merged with the only other NHP fork we&#8217;ve found that&#8217;s worthwhile, <a href=\"http://simpleoptions.simplerain.com/wp-admin\">Simple Options Framework</a>!</p>\n<p><span id=\"more-183\"></span></p>\n<p></p>\n<p>I&#8217;m the first to admit, I&#8217;m not the best UI designer in the world&#8230; I&#8217;m more of a backend/plugin developer. My counterpart from Simple Options Framework is the perfect supplement to my weaknesses, preferring to focus on the user experience over the actual codebase. However, he&#8217;s got some really great enhancements he&#8217;s added to the old NHP framework! As such, after a lengthy discussion, we&#8217;ve decided to combine our talents to bring you an even better, more powerful options framework!</p>\n<p></p>\n<p>So what does this mean for you&#8230;</p>\n<p></p>\n<p>For the moment, nothing other than the Redux core development team has doubled. With the upcoming release of Redux Framework v3.0, we&#8217;re pulling out all the stops! We&#8217;re migrating to an organizational repo, rewriting the Redux documentation from the ground up, adding a slew of new features, cleaning up the codebase, and bringing you the most revolutionary darned framework since, well&#8230; the first release of NHP!</p>\n<p></p>\n<p>Stay tuned for more exciting news from the world of Redux!</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://reduxframework.com/2013/09/reduxsimple-options-merger/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"183\";s: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://reduxframework.com/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:\"63352328\";s:7:\"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\";a:15:{s:6:\"server\";s:11:\"nginx/1.2.1\";s:4:\"date\";s:29:\"Fri, 30 Sep 2016 15:56:46 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:12:\"x-powered-by\";s:10:\"HHVM/3.7.0\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"link\";a:2:{i:0;s:63:\"<https://reduxframework.com/wp-json/>; rel=\"https://api.w.org/\"\";i:1;s:76:\"<https://reduxframework.com/wp-json>; rel=\"https://github.com/WP-API/WP-API\"\";}s:13:\"last-modified\";s:29:\"Tue, 20 Sep 2016 01:12:26 GMT\";s:4:\"etag\";s:34:\"\"a92b12a40ecd5158a0ef003cd1eb06b0\"\";s:6:\"pragma\";s:8:\"no-cache\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:13:\"cache-control\";s:62:\"no-store, no-cache, must-revalidate, post-check=0, pre-check=0\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:10:\"set-cookie\";a:2:{i:0;s:50:\"PHPSESSID=eba2dcfa102d3cbef25a708b71f5e617; path=/\";i:1;s:38:\"wpfront-notification-bar-landingpage=1\";}}s:5:\"build\";s:14:\"20160112052936\";}", "no");
INSERT INTO `wp_options` VALUES("6145", "revslider-valid-notice", "false", "yes");
INSERT INTO `wp_options` VALUES("143", "smof_data-transients", "a:4:{s:14:\"changed_values\";a:1:{s:8:\"last_tab\";s:1:\"0\";}s:9:\"last_save\";i:1475160575;s:13:\"last_compiler\";i:1475160458;s:11:\"last_import\";i:1475160458;}", "yes");
INSERT INTO `wp_options` VALUES("146", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1310", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("8421", "widget_widget_cart_search", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8422", "widget_ww_news_tabs", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8423", "widget_cs_facebook_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8424", "widget_pages", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8425", "widget_rev-slider-widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8426", "widget_woo_search_widget", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8427", "widget_wp_user_avatar_profile", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("153", "wpcf7", "a:1:{s:7:\"version\";s:3:\"4.3\";}", "yes");
INSERT INTO `wp_options` VALUES("154", "revslider_checktables", "1", "yes");
INSERT INTO `wp_options` VALUES("155", "revslider-static-css", ".tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}\n.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}", "yes");
INSERT INTO `wp_options` VALUES("157", "vc_version", "4.5.3", "yes");
INSERT INTO `wp_options` VALUES("163", "wpb_js_composer_license_activation_notified", "yes", "yes");
INSERT INTO `wp_options` VALUES("138641", "team_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("18172", "clientscategory_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("18176", "testimonial_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("266", "theme_mods_wp_me", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1417745511;s:4:\"data\";a:26:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:6:\"text-2\";}s:19:\"cshero-blog-sidebar\";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:18:\"cshero-widget-left\";a:0:{}s:19:\"cshero-widget-right\";a:0:{}s:25:\"cshero-widget-hidden-menu\";N;s:26:\"cshero-header-top-widget-1\";N;s:26:\"cshero-header-top-widget-2\";N;s:30:\"cshero-header-content-widget-1\";N;s:30:\"cshero-header-content-widget-2\";N;s:22:\"cshero-bottom-widget-1\";N;s:22:\"cshero-bottom-widget-2\";N;s:22:\"cshero-bottom-widget-3\";N;s:22:\"cshero-bottom-widget-4\";N;s:22:\"cshero-footer-widget-1\";N;s:22:\"cshero-footer-widget-2\";N;s:22:\"cshero-footer-widget-3\";N;s:22:\"cshero-footer-widget-4\";N;s:33:\"cshero-slidingbar-bottom-widget-1\";N;s:33:\"cshero-slidingbar-bottom-widget-2\";N;s:28:\"cshero-slidingbar-newsletter\";N;s:19:\"woocommerce_sidebar\";N;s:17:\"megamenu_sidebar1\";N;s:17:\"megamenu_sidebar2\";N;s:17:\"megamenu_sidebar3\";N;s:19:\"cshero-debug-widget\";N;s:27:\"cshero-custom-button-widget\";N;}}}", "yes");
INSERT INTO `wp_options` VALUES("18169", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("1093", "widget_calendar", "a:3:{i:2;a:1:{s:5:\"title\";s:8:\"CALENDAR\";}i:3;a:1:{s:5:\"title\";s:8:\"CALENDAR\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8068", "wpefi_settings", "a:1:{s:7:\"p_types\";a:1:{i:0;s:3:\"yes\";}}", "yes");
INSERT INTO `wp_options` VALUES("8647", "WPLANG", "", "yes");
INSERT INTO `wp_options` VALUES("9508", "duplicator_version_plugin", "0.5.28", "yes");
INSERT INTO `wp_options` VALUES("9034", "eg-current-sorting", "a:2:{s:5:\"limit\";s:2:\"10\";s:7:\"pagenum\";s:1:\"4\";}", "yes");
INSERT INTO `wp_options` VALUES("9035", "esg-custom-meta", "a:9:{i:0;a:5:{s:6:\"handle\";s:16:\"pricetable-price\";s:4:\"name\";s:16:\"Pricetable Price\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";N;}i:1;a:5:{s:6:\"handle\";s:16:\"pricetable-line1\";s:4:\"name\";s:17:\"Pricetable Line 1\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";N;}i:2;a:5:{s:6:\"handle\";s:16:\"pricetable-line2\";s:4:\"name\";s:17:\"Pricetable Line 2\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";N;}i:3;a:5:{s:6:\"handle\";s:16:\"pricetable-line3\";s:4:\"name\";s:17:\"Pricetable Line 3\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";N;}i:4;a:5:{s:6:\"handle\";s:16:\"pricetable-line4\";s:4:\"name\";s:17:\"Pricetable Line 4\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";N;}i:5;a:5:{s:6:\"handle\";s:18:\"pricetable-buy-url\";s:4:\"name\";s:25:\"Pricetable Buy Button url\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";N;}i:6;a:5:{s:6:\"handle\";s:13:\"demogrid-link\";s:4:\"name\";s:12:\"Link to Demo\";s:4:\"type\";s:4:\"text\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";s:0:\"\";}i:7;a:5:{s:6:\"handle\";s:12:\"clients-icon\";s:4:\"name\";s:11:\"Client Icon\";s:4:\"type\";s:5:\"image\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";s:0:\"\";}i:8;a:5:{s:6:\"handle\";s:17:\"clients-icon-dark\";s:4:\"name\";s:17:\"clients_icon_dark\";s:4:\"type\";s:5:\"image\";s:9:\"sort-type\";s:10:\"alphabetic\";s:7:\"default\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("9031", "tp_eg_role", "", "yes");
INSERT INTO `wp_options` VALUES("9032", "tp_eg_update-check-short", "1475251322", "yes");
INSERT INTO `wp_options` VALUES("8644", "theme_mods_exo-theme", "a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:5:{s:14:\"top_navigation\";i:0;s:15:\"left_navigation\";i:0;s:16:\"right_navigation\";i:0;s:9:\"404_pages\";i:0;s:17:\"sticky_navigation\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1452437378;s:4:\"data\";a:19:{s:18:\"orphaned_widgets_1\";a:1:{i:0;s:10:\"nav_menu-2\";}s:19:\"wp_inactive_widgets\";a:11:{i:0;s:18:\"cs-tweets-widget-2\";i:1;s:18:\"cs-tweets-widget-3\";i:2;s:17:\"recent-posts-v1-2\";i:3;s:17:\"recent-posts-v1-3\";i:4;s:17:\"recent-posts-v1-4\";i:5;s:18:\"cs_social_widget-2\";i:6;s:18:\"cs_social_widget-3\";i:7;s:6:\"text-3\";i:8;s:6:\"text-4\";i:9;s:14:\"recent-posts-2\";i:10;s:8:\"search-3\";}s:19:\"cshero-blog-sidebar\";a:5:{i:0;s:17:\"recent-comments-2\";i:1;s:12:\"categories-2\";i:2;s:11:\"tag_cloud-2\";i:3;s:10:\"archives-3\";i:4;s:10:\"calendar-2\";}s:18:\"cshero-widget-left\";a:1:{i:0;s:12:\"categories-4\";}s:19:\"cshero-widget-right\";a:6:{i:0;s:17:\"recent-comments-3\";i:1;s:12:\"categories-3\";i:2;s:11:\"tag_cloud-3\";i:3;s:10:\"archives-4\";i:4;s:10:\"calendar-3\";i:5;s:21:\"cs_instagram_widget-3\";}s:25:\"cshero-widget-hidden-menu\";a:5:{i:0;s:6:\"text-9\";i:1;s:21:\"ns_widget_mailchimp-2\";i:2;s:18:\"cs-tweets-widget-5\";i:3;s:21:\"cs_instagram_widget-4\";i:4;s:18:\"ft_flickr_widget-2\";}s:26:\"cshero-header-top-widget-1\";a:0:{}s:26:\"cshero-header-top-widget-2\";a:1:{i:0;s:6:\"text-8\";}s:26:\"cshero-header-top-widget-3\";a:0:{}s:30:\"cshero-header-content-widget-1\";a:1:{i:0;s:8:\"search-4\";}s:22:\"cshero-footer-widget-1\";a:1:{i:0;s:6:\"text-6\";}s:22:\"cshero-footer-widget-2\";a:1:{i:0;s:7:\"text-10\";}s:22:\"cshero-footer-widget-3\";a:1:{i:0;s:7:\"text-11\";}s:22:\"cshero-footer-widget-4\";a:1:{i:0;s:18:\"ft_flickr_widget-3\";}s:33:\"cshero-slidingbar-bottom-widget-1\";a:1:{i:0;s:6:\"text-5\";}s:33:\"cshero-slidingbar-bottom-widget-2\";a:1:{i:0;s:18:\"cs_social_widget-4\";}s:23:\"woocommerce-widget-area\";a:2:{i:0;s:32:\"woocommerce_product_categories-2\";i:1;s:26:\"woocommerce_price_filter-2\";}s:23:\"woocommerce-cart-header\";a:1:{i:0;s:20:\"widget_cart_search-2\";}s:8:\"Megamenu\";a:1:{i:0;s:7:\"text-12\";}}}}", "yes");
INSERT INTO `wp_options` VALUES("130268", "_wc_session_expires_6ea870decd140efa0e4fc4bdce1bebe3", "1446961964", "no");
INSERT INTO `wp_options` VALUES("86662", "_wc_session_expires_506bb283cea0e73639960df1bdbef909", "1441433474", "no");
INSERT INTO `wp_options` VALUES("86661", "_wc_session_506bb283cea0e73639960df1bdbef909", "a:21:{s:4:\"cart\";s:5349:\"a:14:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:266.970000000000027284841053187847137451171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:266.96999999999997044142219237983226776123046875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1455.78000000000020008883439004421234130859375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:26;s:5:\"total\";i:0;s:8:\"subtotal\";d:1455.779999999999972715158946812152862548828125;s:15:\"subtotal_ex_tax\";d:1455.779999999999972715158946812152862548828125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("86660", "_wc_session_expires_dcf7415f72587a5a4f6f03e0aa4ac1da", "1441433473", "no");
INSERT INTO `wp_options` VALUES("86659", "_wc_session_dcf7415f72587a5a4f6f03e0aa4ac1da", "a:21:{s:4:\"cart\";s:702:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:147.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:147.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:147.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("4397", "widget_cs_social_widget", "a:5:{i:2;a:32:{s:5:\"title\";s:0:\"\";s:5:\"style\";s:7:\"default\";s:5:\"align\";s:9:\"text-left\";s:13:\"icon_facebook\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"icon_rss\";s:0:\"\";s:8:\"link_rss\";s:0:\"\";s:12:\"icon_youtube\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"icon_twitter\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"icon_google\";s:0:\"\";s:11:\"link_google\";s:0:\"\";s:10:\"icon_skype\";s:0:\"\";s:10:\"link_skype\";s:1:\"#\";s:10:\"icon_yahoo\";s:0:\"\";s:10:\"link_yahoo\";s:0:\"\";s:13:\"icon_dribbble\";s:0:\"\";s:13:\"link_dribbble\";s:1:\"#\";s:11:\"icon_flickr\";s:0:\"\";s:11:\"link_flickr\";s:0:\"\";s:13:\"icon_linkedin\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"icon_vimeo\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"icon_pinterest\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:11:\"icon_github\";s:0:\"\";s:11:\"link_github\";s:0:\"\";s:14:\"icon_instagram\";s:0:\"\";s:14:\"link_instagram\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}i:3;a:32:{s:5:\"title\";s:10:\"Get Social\";s:5:\"style\";s:7:\"default\";s:5:\"align\";s:9:\"text-left\";s:13:\"icon_facebook\";s:19:\"ion-social-facebook\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"icon_rss\";s:14:\"ion-social-rss\";s:8:\"link_rss\";s:1:\"#\";s:12:\"icon_youtube\";s:0:\"\";s:12:\"link_youtube\";s:0:\"\";s:12:\"icon_twitter\";s:18:\"ion-social-twitter\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"icon_google\";s:21:\"ion-social-googleplus\";s:11:\"link_google\";s:1:\"#\";s:10:\"icon_skype\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:10:\"icon_yahoo\";s:0:\"\";s:10:\"link_yahoo\";s:0:\"\";s:13:\"icon_dribbble\";s:0:\"\";s:13:\"link_dribbble\";s:0:\"\";s:11:\"icon_flickr\";s:0:\"\";s:11:\"link_flickr\";s:0:\"\";s:13:\"icon_linkedin\";s:19:\"ion-social-linkedin\";s:13:\"link_linkedin\";s:1:\"#\";s:10:\"icon_vimeo\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"icon_pinterest\";s:20:\"ion-social-pinterest\";s:14:\"link_pinterest\";s:1:\"#\";s:11:\"icon_github\";s:0:\"\";s:11:\"link_github\";s:0:\"\";s:14:\"icon_instagram\";s:20:\"ion-social-instagram\";s:14:\"link_instagram\";s:1:\"#\";s:11:\"extra_class\";s:0:\"\";}i:4;a:32:{s:5:\"title\";s:0:\"\";s:5:\"style\";s:7:\"default\";s:5:\"align\";s:10:\"text-right\";s:13:\"icon_facebook\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"icon_rss\";s:0:\"\";s:8:\"link_rss\";s:0:\"\";s:12:\"icon_youtube\";s:0:\"\";s:12:\"link_youtube\";s:1:\"#\";s:12:\"icon_twitter\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"icon_google\";s:0:\"\";s:11:\"link_google\";s:1:\"#\";s:10:\"icon_skype\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:10:\"icon_yahoo\";s:0:\"\";s:10:\"link_yahoo\";s:0:\"\";s:13:\"icon_dribbble\";s:0:\"\";s:13:\"link_dribbble\";s:0:\"\";s:11:\"icon_flickr\";s:0:\"\";s:11:\"link_flickr\";s:0:\"\";s:13:\"icon_linkedin\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"icon_vimeo\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"icon_pinterest\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:11:\"icon_github\";s:0:\"\";s:11:\"link_github\";s:0:\"\";s:14:\"icon_instagram\";s:0:\"\";s:14:\"link_instagram\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}i:5;a:32:{s:5:\"title\";s:0:\"\";s:5:\"style\";s:7:\"default\";s:5:\"align\";s:10:\"text-right\";s:13:\"icon_facebook\";s:0:\"\";s:13:\"link_facebook\";s:1:\"#\";s:8:\"icon_rss\";s:0:\"\";s:8:\"link_rss\";s:0:\"\";s:12:\"icon_youtube\";s:0:\"\";s:12:\"link_youtube\";s:1:\"#\";s:12:\"icon_twitter\";s:0:\"\";s:12:\"link_twitter\";s:1:\"#\";s:11:\"icon_google\";s:0:\"\";s:11:\"link_google\";s:1:\"#\";s:10:\"icon_skype\";s:0:\"\";s:10:\"link_skype\";s:0:\"\";s:10:\"icon_yahoo\";s:0:\"\";s:10:\"link_yahoo\";s:0:\"\";s:13:\"icon_dribbble\";s:0:\"\";s:13:\"link_dribbble\";s:0:\"\";s:11:\"icon_flickr\";s:0:\"\";s:11:\"link_flickr\";s:0:\"\";s:13:\"icon_linkedin\";s:0:\"\";s:13:\"link_linkedin\";s:0:\"\";s:10:\"icon_vimeo\";s:0:\"\";s:10:\"link_vimeo\";s:0:\"\";s:14:\"icon_pinterest\";s:0:\"\";s:14:\"link_pinterest\";s:0:\"\";s:11:\"icon_github\";s:0:\"\";s:11:\"link_github\";s:0:\"\";s:14:\"icon_instagram\";s:0:\"\";s:14:\"link_instagram\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("5743", "revslider-update-check-short", "1475159700", "yes");
INSERT INTO `wp_options` VALUES("4372", "cms_superheroes_client", "1", "yes");
INSERT INTO `wp_options` VALUES("4373", "cms_superheroes_portfolio", "1", "yes");
INSERT INTO `wp_options` VALUES("4374", "cms_superheroes_pricing", "1", "yes");
INSERT INTO `wp_options` VALUES("4375", "cms_superheroes_team", "1", "yes");
INSERT INTO `wp_options` VALUES("4376", "cms_superheroes_testimonials", "1", "yes");
INSERT INTO `wp_options` VALUES("8056", "wp_user_avatar_disable_gravatar", "0", "yes");
INSERT INTO `wp_options` VALUES("8057", "wp_user_avatar_edit_avatar", "1", "yes");
INSERT INTO `wp_options` VALUES("8058", "wp_user_avatar_resize_crop", "0", "yes");
INSERT INTO `wp_options` VALUES("8059", "wp_user_avatar_resize_h", "96", "yes");
INSERT INTO `wp_options` VALUES("8060", "wp_user_avatar_resize_upload", "0", "yes");
INSERT INTO `wp_options` VALUES("8061", "wp_user_avatar_resize_w", "96", "yes");
INSERT INTO `wp_options` VALUES("8062", "wp_user_avatar_tinymce", "1", "yes");
INSERT INTO `wp_options` VALUES("8063", "wp_user_avatar_upload_size_limit", "0", "yes");
INSERT INTO `wp_options` VALUES("6220", "revslider-latest-version", "5.2.6", "yes");
INSERT INTO `wp_options` VALUES("4202", "theme_mods_twentyfifteen", "a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1473838466;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:14:{i:0;s:6:\"text-8\";i:1;s:6:\"text-9\";i:2;s:7:\"text-10\";i:3;s:7:\"text-11\";i:4;s:7:\"text-12\";i:5;s:7:\"text-13\";i:6;s:21:\"ns_widget_mailchimp-2\";i:7;s:6:\"text-5\";i:8;s:6:\"text-6\";i:9;s:11:\"tag_cloud-4\";i:10;s:6:\"text-3\";i:11;s:6:\"text-4\";i:12;s:14:\"recent-posts-2\";i:13;s:8:\"search-3\";}s:9:\"sidebar-1\";a:5:{i:0;s:17:\"recent-comments-2\";i:1;s:12:\"categories-2\";i:2;s:11:\"tag_cloud-2\";i:3;s:10:\"archives-3\";i:4;s:10:\"calendar-2\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:12:\"categories-4\";}s:18:\"orphaned_widgets_2\";a:5:{i:0;s:17:\"recent-comments-3\";i:1;s:12:\"categories-3\";i:2;s:11:\"tag_cloud-3\";i:3;s:10:\"archives-4\";i:4;s:10:\"calendar-3\";}s:18:\"orphaned_widgets_3\";a:1:{i:0;s:10:\"nav_menu-2\";}s:18:\"orphaned_widgets_4\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("1669", "widget_cs_recent_post_v2", "a:2:{i:2;a:5:{s:5:\"title\";s:0:\"\";s:9:\"show_date\";N;s:9:\"show_decs\";N;s:6:\"number\";i:5;s:11:\"extra_class\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1670", "widget_recent-posts-v1", "a:4:{i:2;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:4;s:9:\"show_date\";b:1;}i:3;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:4;s:9:\"show_date\";b:1;}i:4;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:4;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("1682", "category_16", "a:2:{s:13:\"category_type\";s:10:\"One Column\";s:15:\"category_layout\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("1683", "widget_cs-tweets-widget", "a:4:{i:2;a:8:{s:5:\"title\";s:13:\"Recent Tweets\";s:12:\"consumer_key\";s:22:\"qBQQF5Cmantse0ptg413Mw\";s:15:\"consumer_secret\";s:43:\"BS9qgCk4BD7bvDWIwLCoD0FYoDiQkX7VPDBz1pBN9IA\";s:12:\"access_token\";s:50:\"123293200-Y2CxwzKN5SgjfnnAplH6nD4ETtUNluJdvJ3YD6Xy\";s:19:\"access_token_secret\";s:45:\"EgVTFys3agS8HKJ5RyYggNVFDo0XR6wbfNAnG9LX3igyb\";s:10:\"twitter_id\";s:13:\"realjoomlaman\";s:9:\"show_date\";s:3:\"yes\";s:5:\"count\";s:1:\"3\";}i:3;a:8:{s:5:\"title\";s:13:\"Recent Tweets\";s:12:\"consumer_key\";s:0:\"\";s:15:\"consumer_secret\";s:0:\"\";s:12:\"access_token\";s:0:\"\";s:19:\"access_token_secret\";s:0:\"\";s:10:\"twitter_id\";s:0:\"\";s:9:\"show_date\";s:2:\"no\";s:5:\"count\";s:1:\"3\";}i:5;a:8:{s:5:\"title\";s:13:\"Recent Tweets\";s:12:\"consumer_key\";s:22:\"qBQQF5Cmantse0ptg413Mw\";s:15:\"consumer_secret\";s:43:\"BS9qgCk4BD7bvDWIwLCoD0FYoDiQkX7VPDBz1pBN9IA\";s:12:\"access_token\";s:50:\"123293200-Y2CxwzKN5SgjfnnAplH6nD4ETtUNluJdvJ3YD6Xy\";s:19:\"access_token_secret\";s:45:\"EgVTFys3agS8HKJ5RyYggNVFDo0XR6wbfNAnG9LX3igyb\";s:10:\"twitter_id\";s:13:\"realjoomlaman\";s:9:\"show_date\";s:2:\"no\";s:5:\"count\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("2262", "wp_user_avatar_default_avatar_updated", "1", "yes");
INSERT INTO `wp_options` VALUES("2263", "wp_user_avatar_users_updated", "1", "yes");
INSERT INTO `wp_options` VALUES("2264", "wp_user_avatar_media_updated", "1", "yes");
INSERT INTO `wp_options` VALUES("2265", "wpua_has_gravatar", "s:14:\"a:1:{i:1;b:0;}\";", "yes");
INSERT INTO `wp_options` VALUES("136708", "essential_grid_category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("9028", "tp_eg_grids_version", "2.1", "yes");
INSERT INTO `wp_options` VALUES("9029", "tp_eg_custom_css_imported", "true", "yes");
INSERT INTO `wp_options` VALUES("9030", "tp_eg_custom_css", "/* HENRY HARRISON */\r\n\r\na.eg-henryharrison-element-1,\r\na.eg-henryharrison-element-2 {\r\n  -webkit-transition: all .4s linear;  \r\n    -moz-transition: all .4s linear;  \r\n    -o-transition: all .4s linear;  \r\n    -ms-transition: all .4s linear;  \r\n    transition: all .4s linear; \r\n}\r\n\r\n/* JIMMY CARTER */\r\n.eg-jimmy-carter-element-11 i:before { margin-left:0px; margin-right:0px;}\r\n\r\n\r\n/* HARDING */\r\n.eg-harding-element-17 { letter-spacing:1px}\r\n.eg-harding-wrapper .esg-entry-media { overflow:hidden; \r\n            box-sizing:border-box;\r\n            -webkit-box-sizing:border-box;\r\n            -moz-box-sizing:border-box;\r\n            padding:30px 30px 0px 30px;\r\n}\r\n\r\n.eg-harding-wrapper .esg-entry-media img { overflow:hidden; \r\n            border-radius:50%;\r\n            -webkit-border-radius:50%;\r\n            -moz-border-radius:50%;\r\n}\r\n\r\n/*ULYSSES S GRANT */\r\n.eg-ulysses-s-grant-wrapper .esg-entry-media { overflow:hidden; \r\n            box-sizing:border-box;\r\n            -webkit-box-sizing:border-box;\r\n            -moz-box-sizing:border-box;\r\n            padding:30px 30px 0px 30px;\r\n}\r\n\r\n.eg-ulysses-s-grant-wrapper .esg-entry-media img { overflow:hidden; \r\n            border-radius:50%;\r\n            -webkit-border-radius:50%;\r\n            -moz-border-radius:50%;\r\n}\r\n\r\n/*RICHARD NIXON */\r\n.eg-richard-nixon-wrapper .esg-entry-media { overflow:hidden; \r\n            box-sizing:border-box;\r\n            -webkit-box-sizing:border-box;\r\n            -moz-box-sizing:border-box;\r\n            padding:30px 30px 0px 30px;\r\n}\r\n\r\n.eg-richard-nixon-wrapper .esg-entry-media img { overflow:hidden; \r\n            border-radius:50%;\r\n            -webkit-border-radius:50%;\r\n            -moz-border-radius:50%;\r\n}\r\n\r\n\r\n/* HERBERT HOOVER */\r\n.eg-herbert-hoover-wrapper .esg-entry-media img{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\r\n    filter: gray; /* IE6-9 */\r\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\r\n}\r\n\r\n.eg-herbert-hoover-wrapper:hover .esg-entry-media img{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\r\n    -webkit-filter: grayscale(0%);}\r\n\r\n\r\n/* JOOHNSON */\r\n.eg-lyndon-johnson-wrapper .esg-entry-media img{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\r\n    filter: gray; /* IE6-9 */\r\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\r\n}\r\n\r\n.eg-lyndon-johnson-wrapper:hover .esg-entry-media img{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\r\n    -webkit-filter: grayscale(0%);}\r\n\r\n\r\n/*RONALD REAGAN*/\r\n.esg-overlay.eg-ronald-reagan-container {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\r\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\r\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\r\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\r\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\r\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\r\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\r\n\r\n/*GEORGE BUSH*/\r\n.eg-georgebush-wrapper .esg-entry-cover {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\r\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\r\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\r\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\r\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\r\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\r\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\r\n\r\n/*GEORGE BUSH\r\n.eg-georgebush-wrapper .esg-entry-cover { background: rgba(0,0,0,0.5);}*/\r\n\r\n/*JEFFERSON*/\r\n.eg-jefferson-wrapper { -webkit-border-radius: 5px !important; -moz-border-radius: 5px !important; border-radius: 5px !important; -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important; }\r\n\r\n/*MONROE*/\r\n.eg-monroe-element-1 { text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }\r\n\r\n/*LYNDON JOHNSON*/\r\n.eg-lyndon-johnson-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\r\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\r\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\r\nbackground: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\r\nbackground: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\r\nbackground: radial-gradient(ellipse at center,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\r\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\r\n }\r\n\r\n/*WILBERT*/\r\n.eg-wilbert-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\r\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\r\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\r\nbackground: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\r\nbackground: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\r\nbackground: radial-gradient(ellipse at center,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\r\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\r\n }\r\n.eg-wilbert-wrapper .esg-entry-media img{\r\n  -webkit-transition: 0.4s ease-in-out;\r\n    -moz-transition:  0.4s ease-in-out;\r\n    -o-transition:  0.4s ease-in-out;\r\n    transition:  0.4s ease-in-out;\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\r\n    filter: gray; /* IE6-9 */\r\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\r\n}\r\n\r\n.eg-wilbert-wrapper:hover .esg-entry-media img{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\r\n    -webkit-filter: grayscale(0%);}\r\n\r\n/*PHILLIE*/\r\n.eg-phillie-element-3:after { \r\ncontent:\" \";\r\nwidth: 0px;\r\nheight: 0px;\r\nborder-style: solid;\r\nborder-width: 5px 5px 0 5px;\r\nborder-color: #000 transparent transparent transparent;\r\nleft:50%;\r\nmargin-left:-5px; bottom:-5px; position:absolute; }\r\n\r\n/*HOWARD TAFT*/\r\n.eg-howardtaft-wrapper .esg-entry-media img, .eg-howardtaft-wrapper .esg-media-poster{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\r\n    -webkit-filter: grayscale(0%);\r\n}\r\n\r\n.eg-howardtaft-wrapper:hover .esg-entry-media img, .eg-howardtaft-wrapper:hover .esg-media-poster{\r\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\r\n    filter: gray; /* IE6-9 */\r\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\r\n}\r\n\r\n/* WOOCOMMERCE */\r\n.myportfolio-container .added_to_cart.wc-forward { font-family: \"Open Sans\"; font-size: 13px; color: #fff; margin-top: 10px; }\r\n\r\n/* LIGHTBOX */\r\n.esgbox-title.esgbox-title-outside-wrap { font-size: 15px; font-weight: 700; text-align: center; }\r\n.esgbox-title.esgbox-title-inside-wrap { padding-bottom: 10px; font-size: 15px; font-weight: 700; text-align: center; }", "yes");
INSERT INTO `wp_options` VALUES("2580", "wpb_js_google_fonts_subsets", "a:1:{i:0;s:5:\"latin\";}", "yes");
INSERT INTO `wp_options` VALUES("1892", "cms_superheroes_restaurant", "0", "yes");
INSERT INTO `wp_options` VALUES("1893", "cms_superheroes_events", "0", "yes");
INSERT INTO `wp_options` VALUES("3210", "widget_nav_menu", "a:2:{i:2;a:2:{s:5:\"title\";s:11:\"Custom Menu\";s:8:\"nav_menu\";i:51;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("2455", "tp-google-fonts", "a:6:{i:0;a:2:{s:3:\"url\";s:29:\"Open+Sans:300,400,600,700,800\";s:6:\"handle\";s:9:\"open-sans\";}i:1;a:2:{s:3:\"url\";s:43:\"Raleway:100,200,300,400,500,600,700,800,900\";s:6:\"handle\";s:7:\"raleway\";}i:2;a:2:{s:3:\"url\";s:19:\"Droid+Serif:400,700\";s:6:\"handle\";s:11:\"droid-serif\";}i:3;a:2:{s:3:\"url\";s:19:\"Open Sans Condensed\";s:6:\"handle\";s:18:\"opensanscondendsed\";}i:4;a:2:{s:3:\"url\";s:50:\"Lato:700,700italic,400,400italic,300italic,300,900\";s:6:\"handle\";s:4:\"lato\";}i:5;a:2:{s:3:\"url\";s:58:\"Merriweather:700,700italic,400,400italic,300italic,300,900\";s:6:\"handle\";s:12:\"merriweather\";}}", "yes");
INSERT INTO `wp_options` VALUES("2579", "wpb_js_not_responsive_css", "", "yes");
INSERT INTO `wp_options` VALUES("8054", "avatar_default_wp_user_avatar", "", "yes");
INSERT INTO `wp_options` VALUES("8055", "wp_user_avatar_allow_upload", "0", "yes");
INSERT INTO `wp_options` VALUES("18040", "woocommerce_default_customer_address", "geolocation", "yes");
INSERT INTO `wp_options` VALUES("18041", "woocommerce_demo_store", "no", "yes");
INSERT INTO `wp_options` VALUES("18042", "woocommerce_demo_store_notice", "This is a demo store for testing purposes &mdash; no orders shall be fulfilled.", "no");
INSERT INTO `wp_options` VALUES("18043", "woocommerce_api_enabled", "yes", "yes");
INSERT INTO `wp_options` VALUES("18044", "woocommerce_currency", "GBP", "yes");
INSERT INTO `wp_options` VALUES("18045", "woocommerce_currency_pos", "left", "yes");
INSERT INTO `wp_options` VALUES("18046", "woocommerce_price_thousand_sep", ",", "yes");
INSERT INTO `wp_options` VALUES("18047", "woocommerce_price_decimal_sep", ".", "yes");
INSERT INTO `wp_options` VALUES("18048", "woocommerce_price_num_decimals", "2", "yes");
INSERT INTO `wp_options` VALUES("18049", "woocommerce_weight_unit", "kg", "yes");
INSERT INTO `wp_options` VALUES("18050", "woocommerce_dimension_unit", "cm", "yes");
INSERT INTO `wp_options` VALUES("18051", "woocommerce_enable_review_rating", "yes", "no");
INSERT INTO `wp_options` VALUES("18052", "woocommerce_review_rating_required", "yes", "no");
INSERT INTO `wp_options` VALUES("18053", "woocommerce_review_rating_verification_label", "yes", "no");
INSERT INTO `wp_options` VALUES("18054", "woocommerce_review_rating_verification_required", "no", "no");
INSERT INTO `wp_options` VALUES("18055", "woocommerce_shop_page_id", "17132", "yes");
INSERT INTO `wp_options` VALUES("18056", "woocommerce_shop_page_display", "", "yes");
INSERT INTO `wp_options` VALUES("18057", "woocommerce_category_archive_display", "", "yes");
INSERT INTO `wp_options` VALUES("18058", "woocommerce_default_catalog_orderby", "menu_order", "yes");
INSERT INTO `wp_options` VALUES("18059", "woocommerce_cart_redirect_after_add", "no", "yes");
INSERT INTO `wp_options` VALUES("18060", "woocommerce_enable_ajax_add_to_cart", "yes", "yes");
INSERT INTO `wp_options` VALUES("18061", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("18062", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("18063", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:3:\"180\";s:6:\"height\";s:3:\"180\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("18064", "woocommerce_enable_lightbox", "yes", "yes");
INSERT INTO `wp_options` VALUES("18065", "woocommerce_manage_stock", "yes", "yes");
INSERT INTO `wp_options` VALUES("18066", "woocommerce_hold_stock_minutes", "60", "no");
INSERT INTO `wp_options` VALUES("18067", "woocommerce_notify_low_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("18068", "woocommerce_notify_no_stock", "yes", "no");
INSERT INTO `wp_options` VALUES("18069", "woocommerce_stock_email_recipient", "admin@gmail.com", "no");
INSERT INTO `wp_options` VALUES("18070", "woocommerce_notify_low_stock_amount", "2", "no");
INSERT INTO `wp_options` VALUES("18071", "woocommerce_notify_no_stock_amount", "0", "no");
INSERT INTO `wp_options` VALUES("18072", "woocommerce_hide_out_of_stock_items", "no", "yes");
INSERT INTO `wp_options` VALUES("18073", "woocommerce_stock_format", "", "yes");
INSERT INTO `wp_options` VALUES("18074", "woocommerce_file_download_method", "force", "no");
INSERT INTO `wp_options` VALUES("18075", "woocommerce_downloads_require_login", "no", "no");
INSERT INTO `wp_options` VALUES("18076", "woocommerce_downloads_grant_access_after_payment", "yes", "no");
INSERT INTO `wp_options` VALUES("18077", "woocommerce_calc_taxes", "no", "yes");
INSERT INTO `wp_options` VALUES("18078", "woocommerce_prices_include_tax", "no", "yes");
INSERT INTO `wp_options` VALUES("18079", "woocommerce_tax_based_on", "shipping", "yes");
INSERT INTO `wp_options` VALUES("18080", "woocommerce_shipping_tax_class", "title", "yes");
INSERT INTO `wp_options` VALUES("18081", "woocommerce_tax_round_at_subtotal", "no", "yes");
INSERT INTO `wp_options` VALUES("18082", "woocommerce_tax_classes", "Reduced Rate\nZero Rate", "yes");
INSERT INTO `wp_options` VALUES("18083", "woocommerce_tax_display_shop", "excl", "yes");
INSERT INTO `wp_options` VALUES("18084", "woocommerce_tax_display_cart", "excl", "no");
INSERT INTO `wp_options` VALUES("18085", "woocommerce_price_display_suffix", "", "yes");
INSERT INTO `wp_options` VALUES("18086", "woocommerce_tax_total_display", "itemized", "no");
INSERT INTO `wp_options` VALUES("18087", "woocommerce_enable_coupons", "yes", "no");
INSERT INTO `wp_options` VALUES("18088", "woocommerce_enable_guest_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("18089", "woocommerce_force_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("18090", "woocommerce_unforce_ssl_checkout", "no", "yes");
INSERT INTO `wp_options` VALUES("18091", "woocommerce_cart_page_id", "17133", "yes");
INSERT INTO `wp_options` VALUES("18092", "woocommerce_checkout_page_id", "17134", "yes");
INSERT INTO `wp_options` VALUES("18093", "woocommerce_terms_page_id", "", "no");
INSERT INTO `wp_options` VALUES("18094", "woocommerce_checkout_pay_endpoint", "order-pay", "yes");
INSERT INTO `wp_options` VALUES("18095", "woocommerce_checkout_order_received_endpoint", "order-received", "yes");
INSERT INTO `wp_options` VALUES("18096", "woocommerce_myaccount_add_payment_method_endpoint", "add-payment-method", "yes");
INSERT INTO `wp_options` VALUES("18097", "woocommerce_calc_shipping", "yes", "yes");
INSERT INTO `wp_options` VALUES("18098", "woocommerce_enable_shipping_calc", "yes", "no");
INSERT INTO `wp_options` VALUES("18099", "woocommerce_shipping_cost_requires_address", "no", "no");
INSERT INTO `wp_options` VALUES("18100", "woocommerce_shipping_method_format", "", "no");
INSERT INTO `wp_options` VALUES("18101", "woocommerce_ship_to_destination", "billing", "no");
INSERT INTO `wp_options` VALUES("18102", "woocommerce_ship_to_countries", "", "yes");
INSERT INTO `wp_options` VALUES("18103", "woocommerce_specific_ship_to_countries", "", "yes");
INSERT INTO `wp_options` VALUES("18104", "woocommerce_myaccount_page_id", "17135", "yes");
INSERT INTO `wp_options` VALUES("18105", "woocommerce_myaccount_view_order_endpoint", "view-order", "yes");
INSERT INTO `wp_options` VALUES("18106", "woocommerce_myaccount_edit_account_endpoint", "edit-account", "yes");
INSERT INTO `wp_options` VALUES("18107", "woocommerce_myaccount_edit_address_endpoint", "edit-address", "yes");
INSERT INTO `wp_options` VALUES("18108", "woocommerce_myaccount_lost_password_endpoint", "lost-password", "yes");
INSERT INTO `wp_options` VALUES("18109", "woocommerce_logout_endpoint", "customer-logout", "yes");
INSERT INTO `wp_options` VALUES("18110", "woocommerce_enable_signup_and_login_from_checkout", "yes", "no");
INSERT INTO `wp_options` VALUES("18111", "woocommerce_enable_myaccount_registration", "no", "no");
INSERT INTO `wp_options` VALUES("18112", "woocommerce_enable_checkout_login_reminder", "yes", "no");
INSERT INTO `wp_options` VALUES("18113", "woocommerce_registration_generate_username", "yes", "no");
INSERT INTO `wp_options` VALUES("18114", "woocommerce_registration_generate_password", "no", "no");
INSERT INTO `wp_options` VALUES("18115", "woocommerce_email_from_name", "WP EXO Theme", "no");
INSERT INTO `wp_options` VALUES("18116", "woocommerce_email_from_address", "admin@gmail.com", "no");
INSERT INTO `wp_options` VALUES("18117", "woocommerce_email_header_image", "", "no");
INSERT INTO `wp_options` VALUES("18118", "woocommerce_email_footer_text", "WP EXO Theme - Powered by WooCommerce", "no");
INSERT INTO `wp_options` VALUES("18119", "woocommerce_email_base_color", "#557da1", "no");
INSERT INTO `wp_options` VALUES("18120", "woocommerce_email_background_color", "#f5f5f5", "no");
INSERT INTO `wp_options` VALUES("18121", "woocommerce_email_body_background_color", "#fdfdfd", "no");
INSERT INTO `wp_options` VALUES("18122", "woocommerce_email_text_color", "#505050", "no");
INSERT INTO `wp_options` VALUES("134621", "woocommerce_db_version", "2.4.10", "yes");
INSERT INTO `wp_options` VALUES("134622", "woocommerce_version", "2.4.10", "yes");
INSERT INTO `wp_options` VALUES("30144", "woocommerce_allow_tracking", "no", "yes");
INSERT INTO `wp_options` VALUES("18161", "pa_colors_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("18162", "pa_sizes_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("18171", "product_shipping_class_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("18252", "widget_woocommerce_price_filter", "a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Filter by price\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("18253", "widget_woocommerce_product_categories", "a:2:{i:2;a:6:{s:5:\"title\";s:18:\"Product Categories\";s:7:\"orderby\";s:4:\"name\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";s:1:\"1\";s:18:\"show_children_only\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("32676", "product_cat_children", "a:2:{i:76;a:3:{i:0;i:90;i:1;i:91;i:2;i:92;}i:77;a:3:{i:0;i:93;i:1;i:94;i:2;i:95;}}", "yes");
INSERT INTO `wp_options` VALUES("135977", "_wc_session_expires_1", "1450624586", "no");
INSERT INTO `wp_options` VALUES("136119", "widget_woocommerce_widget_cart", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136120", "widget_woocommerce_layered_nav", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136121", "widget_woocommerce_layered_nav_filters", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136122", "widget_woocommerce_products", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136123", "widget_woocommerce_product_tag_cloud", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136124", "widget_woocommerce_recently_viewed_products", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136125", "widget_woocommerce_recent_reviews", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("136126", "widget_woocommerce_top_rated_products", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("135976", "_wc_session_1", "a:20:{s:4:\"cart\";s:2600:\"a:7:{s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:157.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:157.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:649.920000000000072759576141834259033203125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:10;s:5:\"total\";i:0;s:8:\"subtotal\";d:649.9199999999999590727384202182292938232421875;s:15:\"subtotal_ex_tax\";d:649.9199999999999590727384202182292938232421875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("130267", "_wc_session_6ea870decd140efa0e4fc4bdce1bebe3", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("9066", "tp_eg_latest-version", "2.1.0.2", "yes");
INSERT INTO `wp_options` VALUES("6993", "widget_cs_instagram_widget", "a:3:{i:3;a:9:{s:5:\"title\";s:9:\"Instagram\";s:8:\"username\";s:13:\"darrenseamark\";s:3:\"api\";s:32:\"d0626dcdff3d4f5ca6b12c5da836b35c\";s:6:\"number\";s:1:\"4\";s:7:\"columns\";s:1:\"2\";s:4:\"size\";s:5:\"large\";s:6:\"target\";s:5:\"_self\";s:4:\"link\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}i:4;a:9:{s:5:\"title\";s:9:\"Instagram\";s:8:\"username\";s:13:\"darrenseamark\";s:3:\"api\";s:32:\"d0626dcdff3d4f5ca6b12c5da836b35c\";s:6:\"number\";s:1:\"6\";s:7:\"columns\";s:1:\"3\";s:4:\"size\";s:5:\"large\";s:6:\"target\";s:5:\"_self\";s:4:\"link\";s:0:\"\";s:11:\"extra_class\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("6994", "widget_ess-grid-widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("53023", "ns_mc_options", "a:1:{s:7:\"api-key\";s:36:\"1b3a94b571f7864ffe3fb17ec35ac3f4-us9\";}", "yes");
INSERT INTO `wp_options` VALUES("53026", "widget_ns_widget_mailchimp", "a:2:{i:2;a:7:{s:13:\"collect_first\";b:1;s:12:\"collect_last\";b:0;s:20:\"current_mailing_list\";s:10:\"7b5b81d45c\";s:15:\"failure_message\";s:47:\"There was a problem processing your submission.\";s:11:\"signup_text\";s:9:\"Subscribe\";s:15:\"success_message\";s:88:\"Thank you for joining our mailing list. Please check your email for a confirmation link.\";s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("54395", "_wc_session_ba7c4b1778599829d3fc45470910376c", "a:23:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("54396", "_wc_session_expires_ba7c4b1778599829d3fc45470910376c", "1439653932", "no");
INSERT INTO `wp_options` VALUES("59170", "_wc_session_expires_f9fc1383f979afbe558da5a2edd9de63", "1439869160", "no");
INSERT INTO `wp_options` VALUES("18251", "widget_woocommerce_product_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("18037", "woocommerce_default_country", "GB", "yes");
INSERT INTO `wp_options` VALUES("18038", "woocommerce_allowed_countries", "all", "yes");
INSERT INTO `wp_options` VALUES("18039", "woocommerce_specific_allowed_countries", "", "yes");
INSERT INTO `wp_options` VALUES("86751", "_wc_session_46bfe0c25664a1bd3d3989140b9adf5b", "a:23:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"OM\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"OM\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("86752", "_wc_session_expires_46bfe0c25664a1bd3d3989140b9adf5b", "1441437687", "no");
INSERT INTO `wp_options` VALUES("12969", "redux_blast", "1461116066", "yes");
INSERT INTO `wp_options` VALUES("79419", "_wc_session_expires_eb220a20bbca4885024f78dd29dbbe2e", "1440906065", "no");
INSERT INTO `wp_options` VALUES("79418", "_wc_session_eb220a20bbca4885024f78dd29dbbe2e", "a:21:{s:4:\"cart\";s:1004:\"a:3:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:256.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:256.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:256.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("79417", "_wc_session_expires_4fd5910053f6be8943abadb7f8d38c79", "1440906064", "no");
INSERT INTO `wp_options` VALUES("79416", "_wc_session_4fd5910053f6be8943abadb7f8d38c79", "a:21:{s:4:\"cart\";s:4565:\"a:12:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:13672:\"a:3:{s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:10:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:39.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:39.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17216;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17216;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:32:58\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:32:58\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Blue Tie\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-blue-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:32:58\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:32:58\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17216\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"19.99\";}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:10:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:18.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:18.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17220;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17220;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:52:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:52:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Grey Tie\";s:12:\"post_excerpt\";s:544:\"In dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-grey-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:52:27\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:52:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17220\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"18.99\";}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:10:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17150;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17150;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-22 02:14:37\";s:13:\"post_date_gmt\";s:19:\"2015-07-22 02:14:37\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:26:\"Monochrome Cami Midi Dress\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:22:\"wooden-handled-axe-exo\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:22:46\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:22:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:73:\"http://tn.joomexp.com/wordpress/exo-theme/?product=wooden-handled-axe-exo\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}}\";s:19:\"cart_contents_total\";d:1198.850000000000136424205265939235687255859375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:19;s:5:\"total\";i:0;s:8:\"subtotal\";d:1198.850000000000136424205265939235687255859375;s:15:\"subtotal_ex_tax\";d:1198.850000000000136424205265939235687255859375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("93250", "_wc_session_193232ee38f9c9a794a41a6f64c4ee40", "a:21:{s:4:\"cart\";s:2670:\"a:7:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:195.960000000000007958078640513122081756591796875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:195.960000000000007958078640513122081756591796875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:266.970000000000027284841053187847137451171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:266.96999999999997044142219237983226776123046875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:40144:\"a:9:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:10:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17146;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17146;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:33:32\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:33:32\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:27:\"Black Pointed Toe Stilletto\";s:12:\"post_excerpt\";s:379:\"In dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:13:\"x15-fibre-axe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:46:03\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:46:03\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1768\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"1\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:3:\"109\";}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:10:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17222;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17222;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:57:24\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:57:24\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Black Suit\";s:12:\"post_excerpt\";s:545:\"Maecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"black-suit\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:57:24\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:57:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17222\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:2:\"99\";}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:10:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17209;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17209;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:16:59\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:16:59\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:16:\"Light Blue Shirt\";s:12:\"post_excerpt\";s:491:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:16:\"light-blue-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:16:59\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:16:59\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17209\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"29.99\";}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:10:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17218;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17218;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:34:16\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:34:16\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:19:\"Pure Silk Black Tie\";s:12:\"post_excerpt\";s:335:\"Phasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"pure-silk-black-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:34:16\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:34:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17218\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"21.99\";}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:10:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:39.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:39.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17216;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17216;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:32:58\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:32:58\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Blue Tie\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-blue-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:32:58\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:32:58\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17216\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"19.99\";}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:10:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17211;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17211;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:21:08\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:21:08\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:11:\"White Shirt\";s:12:\"post_excerpt\";s:491:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:11:\"white-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:21:08\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:21:08\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17211\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"31.99\";}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:10:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17151;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17151;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Black Floral Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"ox-spirit-level-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:19:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:19:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:72:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:10:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17144;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17144;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:19:35\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:19:35\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:12:\"Flat Loafers\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"ox-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:58:23\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:58:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1761\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:10:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17148;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17148;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:41:09\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:41:09\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:21:\"White Tailored Blazer\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"wooden-handled-axe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:29:43\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:29:43\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1772\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}}\";s:19:\"cart_contents_total\";d:845.870000000000118234311230480670928955078125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:14;s:5:\"total\";i:0;s:8:\"subtotal\";d:845.8700000000000045474735088646411895751953125;s:15:\"subtotal_ex_tax\";d:845.8700000000000045474735088646411895751953125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("93251", "_wc_session_expires_193232ee38f9c9a794a41a6f64c4ee40", "1441950343", "no");
INSERT INTO `wp_options` VALUES("93252", "_wc_session_365eccebb7478ce84a3b5c3122285a6b", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("93253", "_wc_session_expires_365eccebb7478ce84a3b5c3122285a6b", "1441950343", "no");
INSERT INTO `wp_options` VALUES("93254", "_wc_session_6a360a32ed186cfad721cbbaa1494441", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("93255", "_wc_session_expires_6a360a32ed186cfad721cbbaa1494441", "1441950344", "no");
INSERT INTO `wp_options` VALUES("101236", "zencache_options", "a:24:{s:7:\"version\";s:6:\"150718\";s:11:\"crons_setup\";s:10:\"1442397413\";s:6:\"enable\";s:1:\"1\";s:16:\"debugging_enable\";s:1:\"1\";s:8:\"base_dir\";s:14:\"cache/zencache\";s:13:\"cache_max_age\";s:6:\"7 days\";s:28:\"cache_clear_xml_feeds_enable\";s:1:\"1\";s:31:\"cache_clear_xml_sitemaps_enable\";s:1:\"1\";s:32:\"cache_clear_xml_sitemap_patterns\";s:13:\"/sitemap*.xml\";s:28:\"cache_clear_home_page_enable\";s:1:\"1\";s:29:\"cache_clear_posts_page_enable\";s:1:\"1\";s:35:\"cache_clear_custom_post_type_enable\";s:1:\"1\";s:30:\"cache_clear_author_page_enable\";s:1:\"1\";s:32:\"cache_clear_term_category_enable\";s:1:\"1\";s:32:\"cache_clear_term_post_tag_enable\";s:1:\"1\";s:29:\"cache_clear_term_other_enable\";s:1:\"0\";s:19:\"allow_browser_cache\";s:1:\"0\";s:12:\"get_requests\";s:1:\"0\";s:12:\"feeds_enable\";s:1:\"0\";s:18:\"cache_404_requests\";s:1:\"0\";s:12:\"exclude_uris\";s:0:\"\";s:12:\"exclude_refs\";s:0:\"\";s:14:\"exclude_agents\";s:13:\"w3c_validator\";s:21:\"uninstall_on_deletion\";s:1:\"0\";}", "yes");
INSERT INTO `wp_options` VALUES("13254", "widget_cms_flickr_widget", "a:2:{i:2;a:5:{s:5:\"title\";s:13:\"Flickr Photos\";s:9:\"flickr_id\";s:13:\"132723314@N07\";s:11:\"description\";s:0:\"\";s:6:\"number\";s:1:\"9\";s:10:\"stream_url\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("13257", "widget_ft_flickr_widget", "a:3:{i:2;a:5:{s:5:\"title\";s:13:\"Flickr Photos\";s:9:\"flickr_id\";s:13:\"132723314@N07\";s:11:\"description\";s:0:\"\";s:6:\"number\";s:1:\"9\";s:10:\"stream_url\";s:0:\"\";}i:3;a:5:{s:5:\"title\";s:13:\"Flickr Photos\";s:9:\"flickr_id\";s:12:\"52617155@N08\";s:11:\"description\";s:0:\"\";s:6:\"number\";s:1:\"6\";s:10:\"stream_url\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("83962", "_wc_session_b3ef44130c0026e0d4ae98825957242f", "a:20:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("83963", "_wc_session_expires_b3ef44130c0026e0d4ae98825957242f", "1441270498", "no");
INSERT INTO `wp_options` VALUES("84442", "_wc_session_dea444fc5f443066a90de34442d0eae7", "a:20:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("84443", "_wc_session_expires_dea444fc5f443066a90de34442d0eae7", "1441296394", "no");
INSERT INTO `wp_options` VALUES("84737", "_wc_session_ec236cb4443bb5db5e44a767728d7f9c", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:297;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";i:297;s:15:\"subtotal_ex_tax\";i:297;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("84738", "_wc_session_expires_ec236cb4443bb5db5e44a767728d7f9c", "1441311768", "no");
INSERT INTO `wp_options` VALUES("36228", "_wc_session_72e19ebc8dcfc329dfe0f8dbc50dcfe5", "a:21:{s:4:\"cart\";s:403:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:97.9800000000000039790393202565610408782958984375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:97.9800000000000039790393202565610408782958984375;s:15:\"subtotal_ex_tax\";d:97.9800000000000039790393202565610408782958984375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("36229", "_wc_session_expires_72e19ebc8dcfc329dfe0f8dbc50dcfe5", "1438482567", "no");
INSERT INTO `wp_options` VALUES("83835", "_wc_session_expires_d6554ce63dc5df7bec0ac9ed65b3f7a4", "1441264453", "no");
INSERT INTO `wp_options` VALUES("59251", "_wc_session_a2084c05a46f01105c1a79aca106cf5b", "a:21:{s:4:\"cart\";s:404:\"a:1:{s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:21.989999999999998436805981327779591083526611328125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:21.989999999999998436805981327779591083526611328125;s:15:\"subtotal_ex_tax\";d:21.989999999999998436805981327779591083526611328125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("59252", "_wc_session_expires_a2084c05a46f01105c1a79aca106cf5b", "1439877384", "no");
INSERT INTO `wp_options` VALUES("59272", "_wc_session_13379fd14958f3a16166891540ce8ad9", "a:23:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:4484:\"a:1:{s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:10:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:6666;s:10:\"line_total\";d:326567.3400000000256113708019256591796875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:326567.3400000000256113708019256591796875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17144;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17144;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:19:35\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:19:35\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:12:\"Flat Loafers\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"ox-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:58:23\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:58:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1761\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("59273", "_wc_session_expires_13379fd14958f3a16166891540ce8ad9", "1439879110", "no");
INSERT INTO `wp_options` VALUES("83319", "_wc_session_expires_a9d5aca8e9fbab70747e537af40529f4", "1441221388", "no");
INSERT INTO `wp_options` VALUES("83318", "_wc_session_a9d5aca8e9fbab70747e537af40529f4", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("83317", "_wc_session_expires_6892150a732fda9c24fb3503cfdb2143", "1441221387", "no");
INSERT INTO `wp_options` VALUES("83316", "_wc_session_6892150a732fda9c24fb3503cfdb2143", "a:21:{s:4:\"cart\";s:702:\"a:2:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:197.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:197.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:197.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("83315", "_wc_session_expires_7d2ac95e016fc56a098310d8683de197", "1441221386", "no");
INSERT INTO `wp_options` VALUES("83314", "_wc_session_7d2ac95e016fc56a098310d8683de197", "a:21:{s:4:\"cart\";s:4959:\"a:13:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:9195:\"a:2:{s:32:\"e376d5d818f7665946b0a88c7632e311\";a:10:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:18.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:18.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17220;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17220;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:52:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:52:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Grey Tie\";s:12:\"post_excerpt\";s:544:\"In dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-grey-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:52:27\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:52:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17220\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"18.99\";}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:10:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17152;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17152;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:45\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:45\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:33:\"Slim Fit Bright Blue 2 Piece Suit\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:24:\"wooden-handled-axe-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:11:34\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:11:34\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:75:\"http://tn.joomexp.com/wordpress/exo-theme/?product=wooden-handled-axe-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}}\";s:19:\"cart_contents_total\";d:1180.819999999999936335370875895023345947265625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:21;s:5:\"total\";i:0;s:8:\"subtotal\";d:1180.819999999999936335370875895023345947265625;s:15:\"subtotal_ex_tax\";d:1180.819999999999936335370875895023345947265625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("72022", "_wc_session_b1afc245a18b04056c0813321da3c963", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:38.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:38.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:38.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("72023", "_wc_session_expires_b1afc245a18b04056c0813321da3c963", "1440518430", "no");
INSERT INTO `wp_options` VALUES("71138", "_wc_session_expires_720e34a9409e47b5e1ac529e409169b7", "1440436710", "no");
INSERT INTO `wp_options` VALUES("71135", "_wc_session_118234fa896ccb16649789a7d54bb7f6", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("71136", "_wc_session_expires_118234fa896ccb16649789a7d54bb7f6", "1440436710", "no");
INSERT INTO `wp_options` VALUES("71137", "_wc_session_720e34a9409e47b5e1ac529e409169b7", "a:21:{s:4:\"cart\";s:1002:\"a:3:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:296.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:296.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:296.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("70849", "_wc_session_expires_7cd014372ababd7ca8068a70ba04f72e", "1440417366", "no");
INSERT INTO `wp_options` VALUES("70847", "_wc_session_expires_cdb0652c2858e4f3b3bc2ac44dab5e96", "1440417365", "no");
INSERT INTO `wp_options` VALUES("70848", "_wc_session_7cd014372ababd7ca8068a70ba04f72e", "a:21:{s:4:\"cart\";s:5751:\"a:15:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:327;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:327;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:39.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:39.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:18.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:18.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1329.82000000000016370904631912708282470703125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:23;s:5:\"total\";i:0;s:8:\"subtotal\";d:1329.82000000000016370904631912708282470703125;s:15:\"subtotal_ex_tax\";d:1329.82000000000016370904631912708282470703125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("70846", "_wc_session_cdb0652c2858e4f3b3bc2ac44dab5e96", "a:21:{s:4:\"cart\";s:702:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:147.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:147.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:147.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("139439", "_transient_timeout_ess_grid_trans_query_6", "1475337602", "no");
INSERT INTO `wp_options` VALUES("139440", "_transient_ess_grid_trans_query_6", "O:8:\"WP_Query\":52:{s:5:\"query\";a:8:{s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:-1;s:9:\"showposts\";i:-1;s:11:\"post_status\";s:7:\"publish\";s:9:\"post_type\";s:14:\"essential_grid\";s:7:\"orderby\";s:8:\"post__in\";s:9:\"tax_query\";a:3:{i:0;a:3:{s:8:\"taxonomy\";s:8:\"post_tag\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}}i:1;a:3:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}}s:8:\"relation\";s:2:\"OR\";}s:16:\"suppress_filters\";b:0;}s:10:\"query_vars\";a:69:{s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:-1;s:9:\"showposts\";i:-1;s:11:\"post_status\";s:7:\"publish\";s:9:\"post_type\";s:14:\"essential_grid\";s:7:\"orderby\";s:8:\"post__in\";s:9:\"tax_query\";a:3:{i:0;a:3:{s:8:\"taxonomy\";s:8:\"post_tag\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}}i:1;a:3:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}}s:8:\"relation\";s:2:\"OR\";}s:16:\"suppress_filters\";b:0;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:6:\"static\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";i:45;s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:14:\"comments_popup\";s:0:\"\";s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:1;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:7:\"term_id\";s:2:\"45\";}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:3:{i:0;a:5:{s:8:\"taxonomy\";s:8:\"post_tag\";s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}s:5:\"field\";s:2:\"id\";s:8:\"operator\";s:2:\"IN\";s:16:\"include_children\";b:1;}i:1;a:5:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}s:5:\"field\";s:2:\"id\";s:8:\"operator\";s:2:\"IN\";s:16:\"include_children\";b:1;}s:8:\"relation\";s:2:\"OR\";}s:8:\"relation\";s:2:\"OR\";s:16:\"\0*\0table_aliases\";a:1:{i:0;s:21:\"wp_term_relationships\";}s:13:\"queried_terms\";a:2:{s:8:\"post_tag\";a:2:{s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}s:5:\"field\";s:2:\"id\";}s:23:\"essential_grid_category\";a:2:{s:5:\"terms\";a:6:{i:0;s:2:\"45\";i:1;s:2:\"36\";i:2;s:2:\"28\";i:3;s:2:\"30\";i:4;s:2:\"31\";i:5;s:2:\"32\";}s:5:\"field\";s:2:\"id\";}}s:13:\"primary_table\";s:8:\"wp_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:7:\"request\";s:392:\"SELECT   wp_posts.* FROM wp_posts  INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1  AND ( \n  wp_term_relationships.term_taxonomy_id IN (36,45) \n  OR \n  wp_term_relationships.term_taxonomy_id IN (28,30,31,32)\n) AND wp_posts.post_type = \'essential_grid\' AND ((wp_posts.post_status = \'publish\')) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date ASC \";s:5:\"posts\";a:8:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1003;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:16\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:16\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:20:\"Coffee & Cookie Time\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"coffee-cookie-time\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:28\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:87:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/coffee-cookie-time/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1011;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:19:\"Sitting at the Cafe\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"sitting-at-the-cafe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:57\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:57\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:88:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/sitting-at-the-cafe/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1015;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:23:\"Let´s Read a Good Book\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"lets-read-a-good-book\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:01\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:01\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:90:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/lets-read-a-good-book/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1019;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:20:\"BOX – EXT. CONTENT\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"the-big-city-skyline\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:22\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:89:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-big-city-skyline/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1023;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:19\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:19\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:18:\"BUSINESS CARD BLUE\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:25:\"treat-yourself-with-salad\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:32\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:32\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:94:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/treat-yourself-with-salad/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1031;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:20\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:20\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:17:\"What a Cozy Place\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"what-a-cozy-place\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:29\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:29\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:86:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/what-a-cozy-place/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1047;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:22\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:22\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:29:\"The Mobile Revolution is Here\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:29:\"the-mobile-revolution-is-here\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:24\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-mobile-revolution-is-here/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:17741;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2016-01-13 01:57:10\";s:13:\"post_date_gmt\";s:19:\"2016-01-13 01:57:10\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:26:\"Cras consectetur tincidunt\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"cras-consectetur-tincidunt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-13 01:57:10\";s:17:\"post_modified_gmt\";s:19:\"2016-01-13 01:57:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:62:\"http://localhost/mdeal2/?post_type=essential_grid&#038;p=17741\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:8;s:12:\"current_post\";i:-1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:187;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:11:\"found_posts\";i:8;s:13:\"max_num_pages\";i:0;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:1;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:1;s:6:\"is_tax\";b:1;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:17:\"is_comments_popup\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:0;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"3f042e4c2edd2ada049ce515101805fd\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:23:\"updated_term_meta_cache\";b:0;s:26:\"updated_comment_meta_cache\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}", "no");
INSERT INTO `wp_options` VALUES("138573", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"0.5.28\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("138983", "_site_transient_timeout_browser_8621df93bc649392fd92029726a85c8a", "1470410300", "yes");
INSERT INTO `wp_options` VALUES("138984", "_site_transient_browser_8621df93bc649392fd92029726a85c8a", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"51.0.2704.103\";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;}", "yes");
INSERT INTO `wp_options` VALUES("138575", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1475253585;s:7:\"checked\";a:16:{s:33:\"cmssuperheroes/cmssuperheroes.php\";s:5:\"1.0.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"4.3\";s:23:\"debug-bar/debug-bar.php\";s:5:\"0.8.2\";s:25:\"duplicator/duplicator.php\";s:6:\"0.5.28\";s:33:\"essential-grid/essential-grid.php\";s:5:\"2.0.9\";s:49:\"export-featured-images/export-featured-images.php\";s:3:\"1.0\";s:37:\"mailchimp-widget/mailchimp-widget.php\";s:6:\"0.8.12\";s:31:\"menu-exporter/menu-exporter.php\";s:1:\"1\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:7:\"1.8.0.1\";s:23:\"revslider/revslider.php\";s:5:\"4.6.5\";s:17:\"sumome/sumome.php\";s:4:\"1.10\";s:44:\"widget-settings-importexport/widget-data.php\";s:5:\"1.5.0\";s:41:\"wordpress-importer/wordpress-importer.php\";s:5:\"0.6.1\";s:27:\"js_composer/js_composer.php\";s:5:\"4.5.3\";s:33:\"wp-user-avatar/wp-user-avatar.php\";s:5:\"2.0.3\";s:21:\"zencache/zencache.php\";s:6:\"150718\";}s:8:\"response\";a:7:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"4.5.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.5.1.zip\";}s:23:\"debug-bar/debug-bar.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"18561\";s:4:\"slug\";s:9:\"debug-bar\";s:6:\"plugin\";s:23:\"debug-bar/debug-bar.php\";s:11:\"new_version\";s:5:\"0.8.4\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/debug-bar/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/debug-bar.0.8.4.zip\";s:14:\"upgrade_notice\";s:56:\"Updated to avoid incompatibilities with some extensions.\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"1.1.16\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.1.16.zip\";}s:47:\"really-simple-captcha/really-simple-captcha.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"7028\";s:4:\"slug\";s:21:\"really-simple-captcha\";s:6:\"plugin\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/really-simple-captcha.1.9.zip\";}s:17:\"sumome/sumome.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"48317\";s:4:\"slug\";s:6:\"sumome\";s:6:\"plugin\";s:17:\"sumome/sumome.php\";s:11:\"new_version\";s:4:\"1.19\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/sumome/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/sumome.1.19.zip\";s:14:\"upgrade_notice\";s:60:\"Fixes logout redirect, and updated WordPress tested version.\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.3\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.3.zip\";}s:33:\"wp-user-avatar/wp-user-avatar.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"37680\";s:4:\"slug\";s:14:\"wp-user-avatar\";s:6:\"plugin\";s:33:\"wp-user-avatar/wp-user-avatar.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-user-avatar/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wp-user-avatar.zip\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:49:\"export-featured-images/export-featured-images.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"46511\";s:4:\"slug\";s:22:\"export-featured-images\";s:6:\"plugin\";s:49:\"export-featured-images/export-featured-images.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/export-featured-images/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/export-featured-images.zip\";}s:37:\"mailchimp-widget/mailchimp-widget.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"19034\";s:4:\"slug\";s:16:\"mailchimp-widget\";s:6:\"plugin\";s:37:\"mailchimp-widget/mailchimp-widget.php\";s:11:\"new_version\";s:6:\"0.8.12\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-widget/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/mailchimp-widget.zip\";s:14:\"upgrade_notice\";s:162:\"Bugfix to account for multiple failed submissions. Also cleans up the mailchimp-widget.js file. Thank you to verify for pointing out the problem and its solution.\";}s:31:\"menu-exporter/menu-exporter.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22649\";s:4:\"slug\";s:13:\"menu-exporter\";s:6:\"plugin\";s:31:\"menu-exporter/menu-exporter.php\";s:11:\"new_version\";s:1:\"1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/menu-exporter/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/menu-exporter.1.0.zip\";}s:44:\"widget-settings-importexport/widget-data.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"26921\";s:4:\"slug\";s:28:\"widget-settings-importexport\";s:6:\"plugin\";s:44:\"widget-settings-importexport/widget-data.php\";s:11:\"new_version\";s:5:\"1.5.0\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/widget-settings-importexport/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/widget-settings-importexport.1.5.0.zip\";}}}", "yes");
INSERT INTO `wp_options` VALUES("139441", "_site_transient_timeout_theme_roots", "1475253276", "yes");
INSERT INTO `wp_options` VALUES("139442", "_site_transient_theme_roots", "a:5:{s:5:\"mdeal\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";}", "yes");
INSERT INTO `wp_options` VALUES("138578", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1475251477;s:7:\"checked\";a:5:{s:5:\"mdeal\";s:5:\"1.0.8\";s:13:\"twentyfifteen\";s:3:\"1.2\";s:14:\"twentyfourteen\";s:3:\"1.4\";s:14:\"twentythirteen\";s:3:\"1.5\";s:12:\"twentytwelve\";s:3:\"1.7\";}s:8:\"response\";a:4:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.6.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.1.8.zip\";}s:14:\"twentythirteen\";a:4:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.2.0.zip\";}s:12:\"twentytwelve\";a:4:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.2.1.zip\";}}s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("102617", "_wc_session_expires_5e425f9548dc85579ecdcd0d3a9022c5", "1442705225", "no");
INSERT INTO `wp_options` VALUES("102616", "_wc_session_5e425f9548dc85579ecdcd0d3a9022c5", "a:23:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:436;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:436;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:436;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:4;s:5:\"total\";d:436;s:8:\"subtotal\";i:436;s:15:\"subtotal_ex_tax\";i:436;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("66574", "_wc_session_expires_2e33210258eed6611de48a3dee0e5a4b", "1440196787", "no");
INSERT INTO `wp_options` VALUES("66573", "_wc_session_2e33210258eed6611de48a3dee0e5a4b", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("66559", "_wc_session_expires_e98f5a9813b8f99d619156850efba25e", "1440368039", "no");
INSERT INTO `wp_options` VALUES("66558", "_wc_session_e98f5a9813b8f99d619156850efba25e", "a:22:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:387:\"a:14:{s:8:\"postcode\";s:4:\"1120\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"AT\";s:17:\"shipping_postcode\";s:4:\"1120\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"AT\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("60373", "_wc_session_c6830ce0b8a326e4fe483e76ee395211", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("66443", "_wc_session_expires_004440260d6c96418883a7c925acbd97", "1440190510", "no");
INSERT INTO `wp_options` VALUES("66442", "_wc_session_004440260d6c96418883a7c925acbd97", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:198;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:198;s:8:\"subtotal\";i:198;s:15:\"subtotal_ex_tax\";i:198;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("66236", "_wc_session_expires_629b79cf7284adf523cdf58773f808c6", "1440184500", "no");
INSERT INTO `wp_options` VALUES("66235", "_wc_session_629b79cf7284adf523cdf58773f808c6", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("100272", "_wc_session_expires_ce5a07ca4505fa9c72fe7541815951fa", "1442502209", "no");
INSERT INTO `wp_options` VALUES("100271", "_wc_session_ce5a07ca4505fa9c72fe7541815951fa", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:198;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";i:198;s:15:\"subtotal_ex_tax\";i:198;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("93327", "_wc_session_35d37a2188116ba7ba804f9ce53d326d", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("28452", "_wc_session_5fb46cb66db734b94f9c1685b481f504", "a:20:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("28453", "_wc_session_expires_5fb46cb66db734b94f9c1685b481f504", "1438265517", "no");
INSERT INTO `wp_options` VALUES("98003", "_wc_session_9a9a9e32cc2fdb746032b46cdbcf134d", "a:20:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("98004", "_wc_session_expires_9a9a9e32cc2fdb746032b46cdbcf134d", "1442325558", "no");
INSERT INTO `wp_options` VALUES("99877", "_wc_session_a0a07c8d3655ca76c62215ee66dd7435", "a:21:{s:4:\"cart\";s:5361:\"a:14:{s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:18.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:18.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:2929:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:10:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17145;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17145;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:30:46\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:30:46\";s:12:\"post_content\";s:976:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nOpsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:10:\"post_title\";s:13:\"Chelsea Boots\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"electronic-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:02:15\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:02:15\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1766\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"2\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"88.99\";}}}\";s:19:\"cart_contents_total\";d:980.850000000000136424205265939235687255859375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:18;s:5:\"total\";i:0;s:8:\"subtotal\";d:980.850000000000136424205265939235687255859375;s:15:\"subtotal_ex_tax\";d:980.850000000000136424205265939235687255859375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("50961", "_wc_session_0167dcb76ba2a74dd15d2ff20abfaa5c", "a:23:{s:4:\"cart\";s:1004:\"a:3:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:256.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";d:256.990000000000009094947017729282379150390625;s:8:\"subtotal\";d:256.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:256.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("50962", "_wc_session_expires_0167dcb76ba2a74dd15d2ff20abfaa5c", "1439571167", "no");
INSERT INTO `wp_options` VALUES("103784", "zencache_notices", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("77820", "_wc_session_expires_629c04a28a716c5238a5addc70825eda", "1440809081", "no");
INSERT INTO `wp_options` VALUES("93328", "_wc_session_expires_35d37a2188116ba7ba804f9ce53d326d", "1441954630", "no");
INSERT INTO `wp_options` VALUES("93329", "_wc_session_483249d4835ac5874fb92c81fc46cb7d", "a:21:{s:4:\"cart\";s:3771:\"a:10:{s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:21930:\"a:5:{s:32:\"8d643e95685617e013417f26f7d0f825\";a:10:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17214;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17214;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:24:44\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:24:44\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Grey Shirt\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"grey-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:24:44\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:24:44\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17214\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"38.99\";}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:10:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17218;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17218;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:34:16\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:34:16\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:19:\"Pure Silk Black Tie\";s:12:\"post_excerpt\";s:335:\"Phasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"pure-silk-black-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:34:16\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:34:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17218\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"21.99\";}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:10:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:39.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:39.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17216;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17216;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:32:58\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:32:58\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Blue Tie\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-blue-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:32:58\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:32:58\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17216\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"19.99\";}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:10:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17152;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17152;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:45\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:45\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:33:\"Slim Fit Bright Blue 2 Piece Suit\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:24:\"wooden-handled-axe-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:11:34\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:11:34\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:75:\"http://tn.joomexp.com/wordpress/exo-theme/?product=wooden-handled-axe-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:10:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17151;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17151;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Black Floral Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"ox-spirit-level-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:19:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:19:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:72:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}}\";s:19:\"cart_contents_total\";d:1225.86000000000012732925824820995330810546875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:19;s:5:\"total\";i:0;s:8:\"subtotal\";d:1225.86000000000012732925824820995330810546875;s:15:\"subtotal_ex_tax\";d:1225.86000000000012732925824820995330810546875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("99878", "_wc_session_expires_a0a07c8d3655ca76c62215ee66dd7435", "1442479894", "no");
INSERT INTO `wp_options` VALUES("99879", "_wc_session_95bb3f88dd018a26d04ee8fc96ee5704", "a:21:{s:4:\"cart\";s:1004:\"a:3:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:256.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:256.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:256.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("99880", "_wc_session_expires_95bb3f88dd018a26d04ee8fc96ee5704", "1442479897", "no");
INSERT INTO `wp_options` VALUES("50688", "_wc_session_db4930402e2f7069deb959d74bb1036b", "a:23:{s:4:\"cart\";s:392:\"a:1:{s:32:\"a02dc882c2d8e6d2d8f50d91aaa28a2d\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17164;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:5:\"small\";s:19:\"attribute_pa_colors\";s:5:\"white\";}s:8:\"quantity\";i:12;s:10:\"line_total\";d:1320;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:1320;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1320;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:12;s:5:\"total\";d:1320;s:8:\"subtotal\";i:1320;s:15:\"subtotal_ex_tax\";i:1320;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("50689", "_wc_session_expires_db4930402e2f7069deb959d74bb1036b", "1439564400", "no");
INSERT INTO `wp_options` VALUES("61749", "_wc_session_expires_202c07565a506664d8f77726cde7340e", "1440001362", "no");
INSERT INTO `wp_options` VALUES("61748", "_wc_session_202c07565a506664d8f77726cde7340e", "a:23:{s:4:\"cart\";s:5753:\"a:15:{s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:29.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:29.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:18.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:18.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1226.830000000000154614099301397800445556640625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:21;s:5:\"total\";i:0;s:8:\"subtotal\";d:1226.830000000000154614099301397800445556640625;s:15:\"subtotal_ex_tax\";d:1226.830000000000154614099301397800445556640625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("61747", "_wc_session_expires_f599af70f10396cfab4a86ca4f20bd82", "1440001361", "no");
INSERT INTO `wp_options` VALUES("61746", "_wc_session_f599af70f10396cfab4a86ca4f20bd82", "a:21:{s:4:\"cart\";s:796:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:137.979999999999989768184605054557323455810546875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:137.979999999999989768184605054557323455810546875;s:15:\"subtotal_ex_tax\";d:137.979999999999989768184605054557323455810546875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("99445", "_wc_session_expires_1c8dd85657a77bbbc492b93a0a19195d", "1442436870", "no");
INSERT INTO `wp_options` VALUES("99444", "_wc_session_1c8dd85657a77bbbc492b93a0a19195d", "a:21:{s:4:\"cart\";s:1002:\"a:3:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:296.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:296.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:296.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("99443", "_wc_session_expires_1c7e987ca72aba1ce4fd0b1bdd74e2bf", "1442436869", "no");
INSERT INTO `wp_options` VALUES("31347", "_wc_session_70827d6d175566d4ead2a06a076b913d", "a:25:{s:4:\"cart\";s:1181:\"a:3:{s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"6ee634514ae0f543bf2d2602c5c57cb6\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17156;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:5:\"large\";s:19:\"attribute_pa_colors\";s:5:\"black\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:30;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:187.979999999999989768184605054557323455810546875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";d:187.979999999999989768184605054557323455810546875;s:8:\"subtotal\";d:187.979999999999989768184605054557323455810546875;s:15:\"subtotal_ex_tax\";d:187.979999999999989768184605054557323455810546875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("31348", "_wc_session_expires_70827d6d175566d4ead2a06a076b913d", "1438363513", "no");
INSERT INTO `wp_options` VALUES("93707", "_wc_session_expires_d54499cb544097d2122c2f15357521fc", "1442849100", "no");
INSERT INTO `wp_options` VALUES("60374", "_wc_session_expires_c6830ce0b8a326e4fe483e76ee395211", "1439948864", "no");
INSERT INTO `wp_options` VALUES("77552", "_wc_session_expires_0b39d0ca7af73189a5e306788b5244a0", "1440790856", "no");
INSERT INTO `wp_options` VALUES("77551", "_wc_session_0b39d0ca7af73189a5e306788b5244a0", "a:21:{s:4:\"cart\";s:1400:\"a:4:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:444.98000000000001818989403545856475830078125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:5;s:5:\"total\";d:444.98000000000001818989403545856475830078125;s:8:\"subtotal\";d:444.98000000000001818989403545856475830078125;s:15:\"subtotal_ex_tax\";d:444.98000000000001818989403545856475830078125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("98943", "_wc_session_expires_d01d06038a2842c8dc36ee071a5d7902", "1442403317", "no");
INSERT INTO `wp_options` VALUES("98942", "_wc_session_d01d06038a2842c8dc36ee071a5d7902", "a:20:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:109;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("60203", "_wc_session_expires_5d72196d3648e18aa6177d80513eab79", "1439937922", "no");
INSERT INTO `wp_options` VALUES("60202", "_wc_session_5d72196d3648e18aa6177d80513eab79", "a:21:{s:4:\"cart\";s:1004:\"a:3:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:256.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:256.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:256.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("77321", "_wc_session_expires_df8e0ad20da89b232486a9f1e35376fd", "1440778585", "no");
INSERT INTO `wp_options` VALUES("77320", "_wc_session_df8e0ad20da89b232486a9f1e35376fd", "a:23:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:109;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"CA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"CA\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("32026", "_wc_session_e13d202b023b063bae31d7c65fd10312", "a:25:{s:4:\"cart\";s:387:\"a:1:{s:32:\"6ee634514ae0f543bf2d2602c5c57cb6\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17156;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:5:\"large\";s:19:\"attribute_pa_colors\";s:5:\"black\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:30;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:30;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:30;s:8:\"subtotal\";i:30;s:15:\"subtotal_ex_tax\";i:30;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"VN\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"VN\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("32027", "_wc_session_expires_e13d202b023b063bae31d7c65fd10312", "1438391471", "no");
INSERT INTO `wp_options` VALUES("59995", "_wc_session_expires_32195753b9cf0b66dcc752cc862acd47", "1439925243", "no");
INSERT INTO `wp_options` VALUES("59994", "_wc_session_32195753b9cf0b66dcc752cc862acd47", "a:25:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:6:\"paypal\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("32150", "_wc_session_c078c4b709c573937f1d81fb12ea7421", "a:21:{s:4:\"cart\";s:786:\"a:2:{s:32:\"6ee634514ae0f543bf2d2602c5c57cb6\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17156;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:5:\"large\";s:19:\"attribute_pa_colors\";s:5:\"black\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:30;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:78.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:78.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:78.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("32151", "_wc_session_expires_c078c4b709c573937f1d81fb12ea7421", "1438399957", "no");
INSERT INTO `wp_options` VALUES("32159", "_wc_session_01ead4cfacd699021c4630154b5ff301", "a:20:{s:4:\"cart\";s:2699:\"a:7:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:492.93999999999999772626324556767940521240234375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:7;s:5:\"total\";i:0;s:8:\"subtotal\";d:492.93999999999999772626324556767940521240234375;s:15:\"subtotal_ex_tax\";d:492.93999999999999772626324556767940521240234375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("32160", "_wc_session_expires_01ead4cfacd699021c4630154b5ff301", "1438400315", "no");
INSERT INTO `wp_options` VALUES("95052", "_wc_session_c495d199760fd6cf9ae3f7d88a2cc7c6", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("98325", "_wc_session_expires_4e78d257ec046dd56b79a38271b2d6a0", "1442352851", "no");
INSERT INTO `wp_options` VALUES("98256", "_wc_session_expires_635081e14009b476d71a7c8ae3bc3251", "1442347687", "no");
INSERT INTO `wp_options` VALUES("59605", "_wc_session_expires_0e83b3f861fcde022f2980ed7d3848ea", "1439904371", "no");
INSERT INTO `wp_options` VALUES("59604", "_wc_session_0e83b3f861fcde022f2980ed7d3848ea", "a:23:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("98255", "_wc_session_635081e14009b476d71a7c8ae3bc3251", "a:23:{s:4:\"cart\";s:308:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:198;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:198;s:8:\"subtotal\";i:198;s:15:\"subtotal_ex_tax\";i:198;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:395:\"a:14:{s:8:\"postcode\";s:6:\"751018\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"OR\";s:7:\"country\";s:2:\"IN\";s:17:\"shipping_postcode\";s:6:\"751018\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"OR\";s:16:\"shipping_country\";s:2:\"IN\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:1;}\";s:21:\"chosen_payment_method\";s:6:\"cheque\";}", "no");
INSERT INTO `wp_options` VALUES("33152", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("59169", "_wc_session_f9fc1383f979afbe558da5a2edd9de63", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("97709", "_wc_session_expires_27553a8c57eb68898a82ead572d93a0c", "1442296305", "no");
INSERT INTO `wp_options` VALUES("97708", "_wc_session_27553a8c57eb68898a82ead572d93a0c", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("97695", "_wc_session_expires_29d25147b1195f48193f6bdf7f65e921", "1442295055", "no");
INSERT INTO `wp_options` VALUES("97694", "_wc_session_29d25147b1195f48193f6bdf7f65e921", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("50386", "_wc_session_expires_fb0dafa0f44ac78d7dad99ebae36ff2f", "1439558570", "no");
INSERT INTO `wp_options` VALUES("35218", "_wc_session_58c5977733552313bc086d6a8a1f8e18", "a:20:{s:4:\"cart\";s:403:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("35219", "_wc_session_expires_58c5977733552313bc086d6a8a1f8e18", "1438451299", "no");
INSERT INTO `wp_options` VALUES("35585", "_wc_session_ae6bb605563138779f6b6480d5bd6366", "a:20:{s:4:\"cart\";s:710:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:157.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:157.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:157.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("35586", "_wc_session_expires_ae6bb605563138779f6b6480d5bd6366", "1438460187", "no");
INSERT INTO `wp_options` VALUES("99442", "_wc_session_1c7e987ca72aba1ce4fd0b1bdd74e2bf", "a:21:{s:4:\"cart\";s:5747:\"a:15:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1405.779999999999972715158946812152862548828125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:26;s:5:\"total\";i:0;s:8:\"subtotal\";d:1405.779999999999972715158946812152862548828125;s:15:\"subtotal_ex_tax\";d:1405.779999999999972715158946812152862548828125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("50383", "_wc_session_f546d6a6d4f4240a17419c140eb46417", "a:23:{s:4:\"cart\";s:5355:\"a:14:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:29.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:29.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:4639:\"a:1:{s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:10:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17150;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17150;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-22 02:14:37\";s:13:\"post_date_gmt\";s:19:\"2015-07-22 02:14:37\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:26:\"Monochrome Cami Midi Dress\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:22:\"wooden-handled-axe-exo\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:22:46\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:22:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:73:\"http://tn.joomexp.com/wordpress/exo-theme/?product=wooden-handled-axe-exo\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}}\";s:19:\"cart_contents_total\";d:1386.810000000000172803993336856365203857421875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:24;s:5:\"total\";i:0;s:8:\"subtotal\";d:1386.810000000000172803993336856365203857421875;s:15:\"subtotal_ex_tax\";d:1386.810000000000172803993336856365203857421875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("75134", "_wc_session_expires_d739196ca3d2e6875a6bb0b5cf2d8a2d", "1440677081", "no");
INSERT INTO `wp_options` VALUES("75133", "_wc_session_d739196ca3d2e6875a6bb0b5cf2d8a2d", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("75131", "_wc_session_3862925aec3b2792339d5bc948382419", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("75130", "_wc_session_expires_a99c34e97014790f2b6169249fdb99d6", "1440677080", "no");
INSERT INTO `wp_options` VALUES("75129", "_wc_session_a99c34e97014790f2b6169249fdb99d6", "a:21:{s:4:\"cart\";s:4659:\"a:12:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:4478:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:10:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17149;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17149;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-22 01:57:41\";s:13:\"post_date_gmt\";s:19:\"2015-07-22 01:57:41\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:17:\"Cami Skater Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"ox-spirit-level-exo\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:26:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:26:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:70:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}}\";s:19:\"cart_contents_total\";d:960.86000000000012732925824820995330810546875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:17;s:5:\"total\";i:0;s:8:\"subtotal\";d:960.86000000000012732925824820995330810546875;s:15:\"subtotal_ex_tax\";d:960.86000000000012732925824820995330810546875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("75128", "_wc_session_expires_1065f3e9a9207f97a4e8c0eae382dd03", "1440677080", "no");
INSERT INTO `wp_options` VALUES("75127", "_wc_session_1065f3e9a9207f97a4e8c0eae382dd03", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("75126", "_wc_session_expires_79a652f9ebef38f3a6ebf198d2f70ea1", "1440677079", "no");
INSERT INTO `wp_options` VALUES("75125", "_wc_session_79a652f9ebef38f3a6ebf198d2f70ea1", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("37259", "_wc_session_8de6f7007785696b5e618a99956d5f4e", "a:23:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:218;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:218;s:8:\"subtotal\";i:218;s:15:\"subtotal_ex_tax\";i:218;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("37260", "_wc_session_expires_8de6f7007785696b5e618a99956d5f4e", "1438510783", "no");
INSERT INTO `wp_options` VALUES("37750", "_wc_session_662849cd03a2200d32eaf46bfb23c6f1", "a:24:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"GB\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"GB\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("37751", "_wc_session_expires_662849cd03a2200d32eaf46bfb23c6f1", "1438523068", "no");
INSERT INTO `wp_options` VALUES("95053", "_wc_session_expires_c495d199760fd6cf9ae3f7d88a2cc7c6", "1442066626", "no");
INSERT INTO `wp_options` VALUES("38830", "_wc_session_ef9939c10413def91e1df2659864d820", "a:21:{s:4:\"cart\";s:387:\"a:1:{s:32:\"6ee634514ae0f543bf2d2602c5c57cb6\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17156;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:5:\"large\";s:19:\"attribute_pa_colors\";s:5:\"black\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:30;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:30;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:30;s:15:\"subtotal_ex_tax\";i:30;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("38831", "_wc_session_expires_ef9939c10413def91e1df2659864d820", "1438559671", "no");
INSERT INTO `wp_options` VALUES("93667", "_wc_session_13b2df1c68c8bda8ff3b1d3632875959", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("40428", "_wc_session_63e54c992d6c31be9fa800bacada7eea", "a:23:{s:4:\"cart\";s:3887:\"a:10:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:266.970000000000027284841053187847137451171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:266.96999999999997044142219237983226776123046875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:22553:\"a:5:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:10:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17222;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17222;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:57:24\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:57:24\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Black Suit\";s:12:\"post_excerpt\";s:545:\"Maecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"black-suit\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:57:24\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:57:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17222\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:2:\"99\";}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:10:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17209;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17209;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:16:59\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:16:59\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:16:\"Light Blue Shirt\";s:12:\"post_excerpt\";s:491:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:16:\"light-blue-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:16:59\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:16:59\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17209\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"29.99\";}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:10:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17218;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17218;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:34:16\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:34:16\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:19:\"Pure Silk Black Tie\";s:12:\"post_excerpt\";s:335:\"Phasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"pure-silk-black-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:34:16\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:34:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17218\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"21.99\";}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:10:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17216;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17216;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:32:58\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:32:58\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Blue Tie\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-blue-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:32:58\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:32:58\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17216\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"19.99\";}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:10:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17148;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17148;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:41:09\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:41:09\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:21:\"White Tailored Blazer\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"wooden-handled-axe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:29:43\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:29:43\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1772\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}}\";s:19:\"cart_contents_total\";d:1084.84000000000014551915228366851806640625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:18;s:5:\"total\";i:0;s:8:\"subtotal\";d:1084.84000000000014551915228366851806640625;s:15:\"subtotal_ex_tax\";d:1084.84000000000014551915228366851806640625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("40429", "_wc_session_expires_63e54c992d6c31be9fa800bacada7eea", "1438664104", "no");
INSERT INTO `wp_options` VALUES("40430", "_wc_session_95af5e49b24d37c2360ec7535337175a", "a:21:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("40431", "_wc_session_expires_95af5e49b24d37c2360ec7535337175a", "1438664104", "no");
INSERT INTO `wp_options` VALUES("50384", "_wc_session_expires_f546d6a6d4f4240a17419c140eb46417", "1439558569", "no");
INSERT INTO `wp_options` VALUES("50385", "_wc_session_fb0dafa0f44ac78d7dad99ebae36ff2f", "a:21:{s:4:\"cart\";s:704:\"a:2:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:157.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:157.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:157.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("110271", "_wc_session_1cbe37c98abe26088099851e399ac8fc", "a:20:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("110272", "_wc_session_expires_1cbe37c98abe26088099851e399ac8fc", "1443758024", "no");
INSERT INTO `wp_options` VALUES("40515", "_wc_session_b0165a736f8dc824b884e65e37d3f474", "a:23:{s:4:\"cart\";s:2797:\"a:7:{s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:29145:\"a:7:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:10:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17151;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17151;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Black Floral Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"ox-spirit-level-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:19:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:19:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:72:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:10:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:327;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:327;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17146;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17146;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:33:32\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:33:32\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:27:\"Black Pointed Toe Stilletto\";s:12:\"post_excerpt\";s:379:\"In dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:13:\"x15-fibre-axe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:46:03\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:46:03\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1768\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"1\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:3:\"109\";}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:10:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17222;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17222;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:57:24\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:57:24\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Black Suit\";s:12:\"post_excerpt\";s:545:\"Maecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"black-suit\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:57:24\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:57:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17222\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:2:\"99\";}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:10:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17149;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17149;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-22 01:57:41\";s:13:\"post_date_gmt\";s:19:\"2015-07-22 01:57:41\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:17:\"Cami Skater Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"ox-spirit-level-exo\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:26:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:26:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:70:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:10:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17145;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17145;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:30:46\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:30:46\";s:12:\"post_content\";s:976:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nOpsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:10:\"post_title\";s:13:\"Chelsea Boots\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"electronic-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:02:15\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:02:15\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1766\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"2\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"88.99\";}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:10:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17214;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17214;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:24:44\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:24:44\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Grey Shirt\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"grey-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:24:44\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:24:44\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17214\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"38.99\";}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:10:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":7:{s:2:\"id\";i:17218;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17218;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:34:16\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:34:16\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:19:\"Pure Silk Black Tie\";s:12:\"post_excerpt\";s:335:\"Phasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"pure-silk-black-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:34:16\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:34:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17218\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:13:\"\0*\0dimensions\";s:0:\"\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"21.99\";}}}\";s:19:\"cart_contents_total\";d:405.90000000000003410605131648480892181396484375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:10;s:5:\"total\";i:0;s:8:\"subtotal\";d:405.90000000000003410605131648480892181396484375;s:15:\"subtotal_ex_tax\";d:405.90000000000003410605131648480892181396484375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";s:1225:\"a:1:{s:7:\"success\";a:7:{i:0;s:160:\"Black Floral Dress removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=c44cc3a1dafb37ba0bec93b81ee3796a&#038;_wpnonce=6f70e4a407\">Undo?</a>\";i:1;s:169:\"Black Pointed Toe Stilletto removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=8982bdc05395c01f87199588e06ef71f&#038;_wpnonce=6f70e4a407\">Undo?</a>\";i:2;s:152:\"Black Suit removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=5e38d982aecea3f5fa249828e8f1548a&#038;_wpnonce=6f70e4a407\">Undo?</a>\";i:3;s:159:\"Cami Skater Dress removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=c04819b0706f1f3fe9352ea81623d826&#038;_wpnonce=6f70e4a407\">Undo?</a>\";i:4;s:155:\"Chelsea Boots removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=8c2c809f0f90fb60826f6fe06add8fe9&#038;_wpnonce=6f70e4a407\">Undo?</a>\";i:5;s:152:\"Grey Shirt removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=8d643e95685617e013417f26f7d0f825&#038;_wpnonce=6f70e4a407\">Undo?</a>\";i:6;s:161:\"Pure Silk Black Tie removed. <a href=\"http://localhost/mdeal2/?page_id=17133&#038;undo_item=b449151eb61e7fdffc88095f40059ac3&#038;_wpnonce=6f70e4a407\">Undo?</a>\";}}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("40516", "_wc_session_expires_b0165a736f8dc824b884e65e37d3f474", "1438668667", "no");
INSERT INTO `wp_options` VALUES("40768", "_wc_session_7a9fde7487b4c774f2147389fec2f450", "a:23:{s:4:\"cart\";s:387:\"a:1:{s:32:\"147d340bacfaf2e80324f65e9001a513\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17161;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:6:\"medium\";s:19:\"attribute_pa_colors\";s:4:\"blue\";}s:8:\"quantity\";i:1;s:10:\"line_total\";d:80;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:80;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:80;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:80;s:8:\"subtotal\";i:80;s:15:\"subtotal_ex_tax\";i:80;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("40769", "_wc_session_expires_7a9fde7487b4c774f2147389fec2f450", "1438684190", "no");
INSERT INTO `wp_options` VALUES("41146", "_wc_session_837719bd5b9405c71c85f639b1a190e0", "a:21:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("41147", "_wc_session_expires_837719bd5b9405c71c85f639b1a190e0", "1438706082", "no");
INSERT INTO `wp_options` VALUES("42572", "_wc_session_f3ed2e86f451e71442400f73d1d9f04c", "a:21:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("42573", "_wc_session_expires_f3ed2e86f451e71442400f73d1d9f04c", "1438772828", "no");
INSERT INTO `wp_options` VALUES("42574", "_wc_session_efc6ab8e83a052b272451928de05ca9e", "a:23:{s:4:\"cart\";s:5794:\"a:15:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:218;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:218;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:266.970000000000027284841053187847137451171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:266.96999999999997044142219237983226776123046875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:29.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:29.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1357.810000000000172803993336856365203857421875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:23;s:5:\"total\";i:0;s:8:\"subtotal\";d:1357.810000000000172803993336856365203857421875;s:15:\"subtotal_ex_tax\";d:1357.810000000000172803993336856365203857421875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("42575", "_wc_session_expires_efc6ab8e83a052b272451928de05ca9e", "1438772829", "no");
INSERT INTO `wp_options` VALUES("42801", "_wc_session_f11e5988e012fe8d6e04e834a6fcefb3", "a:22:{s:4:\"cart\";s:710:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:157.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:157.990000000000009094947017729282379150390625;s:8:\"subtotal\";d:157.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:157.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("42802", "_wc_session_expires_f11e5988e012fe8d6e04e834a6fcefb3", "1438779202", "no");
INSERT INTO `wp_options` VALUES("43024", "_wc_session_4aa4da003fad6919c5f132e53e9cd0a1", "a:20:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("43025", "_wc_session_expires_4aa4da003fad6919c5f132e53e9cd0a1", "1438785585", "no");
INSERT INTO `wp_options` VALUES("112391", "_wc_session_f15ea1abf0968af45903e1b0c5106469", "a:23:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:395:\"a:14:{s:8:\"postcode\";s:6:\"700075\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"WB\";s:7:\"country\";s:2:\"IN\";s:17:\"shipping_postcode\";s:6:\"700075\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"WB\";s:16:\"shipping_country\";s:2:\"IN\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:1;}\";s:21:\"chosen_payment_method\";s:6:\"cheque\";}", "no");
INSERT INTO `wp_options` VALUES("112392", "_wc_session_expires_f15ea1abf0968af45903e1b0c5106469", "1444069500", "no");
INSERT INTO `wp_options` VALUES("43600", "_wc_session_3eb324ec2b39b6816aac2fdf59c17018", "a:21:{s:4:\"cart\";s:403:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("43601", "_wc_session_expires_3eb324ec2b39b6816aac2fdf59c17018", "1438803648", "no");
INSERT INTO `wp_options` VALUES("93668", "_wc_session_expires_13b2df1c68c8bda8ff3b1d3632875959", "1441973162", "no");
INSERT INTO `wp_options` VALUES("43890", "_wc_session_0cdaf78e3373016e700d24dd02384c70", "a:21:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("43891", "_wc_session_expires_0cdaf78e3373016e700d24dd02384c70", "1438816050", "no");
INSERT INTO `wp_options` VALUES("43892", "_wc_session_768fb935593cbda7c5c3632b72527724", "a:23:{s:4:\"cart\";s:5794:\"a:15:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:327;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:327;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:39.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:39.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1375.810000000000172803993336856365203857421875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:24;s:5:\"total\";i:0;s:8:\"subtotal\";d:1375.810000000000172803993336856365203857421875;s:15:\"subtotal_ex_tax\";d:1375.810000000000172803993336856365203857421875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("43893", "_wc_session_expires_768fb935593cbda7c5c3632b72527724", "1438816050", "no");
INSERT INTO `wp_options` VALUES("43894", "_wc_session_6b53cc7d9d2622b4e7e198279aac6549", "a:21:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("43895", "_wc_session_expires_6b53cc7d9d2622b4e7e198279aac6549", "1438816051", "no");
INSERT INTO `wp_options` VALUES("93816", "_wc_session_b0adc41ae839671862fafb760da46e9d", "a:23:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"DE\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"DE\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("83834", "_wc_session_d6554ce63dc5df7bec0ac9ed65b3f7a4", "a:23:{s:4:\"cart\";s:400:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:97.9800000000000039790393202565610408782958984375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"subtotal\";d:97.9800000000000039790393202565610408782958984375;s:15:\"subtotal_ex_tax\";d:97.9800000000000039790393202565610408782958984375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"NL\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"NL\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("93817", "_wc_session_expires_b0adc41ae839671862fafb760da46e9d", "1441980658", "no");
INSERT INTO `wp_options` VALUES("93705", "_wc_session_expires_ba2330cfc21f5866aeb06223731177b3", "1441976126", "no");
INSERT INTO `wp_options` VALUES("93706", "_wc_session_d54499cb544097d2122c2f15357521fc", "a:21:{s:4:\"cart\";s:5726:\"a:15:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:8;s:10:\"line_total\";d:711.9199999999999590727384202182292938232421875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:711.9199999999999590727384202182292938232421875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:6;s:10:\"line_total\";d:654;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:654;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:5;s:10:\"line_total\";d:244.94999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:244.950000000000017053025658242404460906982421875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:6;s:10:\"line_total\";d:594;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:594;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:89.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:89.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:79.9599999999999937472239253111183643341064453125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:79.9599999999999937472239253111183643341064453125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:155.960000000000007958078640513122081756591796875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:155.960000000000007958078640513122081756591796875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:157.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:157.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:75.9599999999999937472239253111183643341064453125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:75.9599999999999937472239253111183643341064453125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:7;s:10:\"line_total\";d:342.93000000000000682121026329696178436279296875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:342.93000000000000682121026329696178436279296875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:157.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:157.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:157.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:157.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:63.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:63.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:87.9599999999999937472239253111183643341064453125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:87.9599999999999937472239253111183643341064453125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:3722.49999999999954525264911353588104248046875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:62;s:5:\"total\";i:0;s:8:\"subtotal\";d:3722.49999999999954525264911353588104248046875;s:15:\"subtotal_ex_tax\";d:3722.49999999999954525264911353588104248046875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("75132", "_wc_session_expires_3862925aec3b2792339d5bc948382419", "1440677081", "no");
INSERT INTO `wp_options` VALUES("93704", "_wc_session_ba2330cfc21f5866aeb06223731177b3", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("74037", "_wc_session_expires_701c1b4d0bfb2323467bef136ea82b66", "1440619693", "no");
INSERT INTO `wp_options` VALUES("74036", "_wc_session_701c1b4d0bfb2323467bef136ea82b66", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("93330", "_wc_session_expires_483249d4835ac5874fb92c81fc46cb7d", "1441954630", "no");
INSERT INTO `wp_options` VALUES("93009", "_wc_session_expires_a6bc8e8ece63294aa5955e61deb5d291", "1441924869", "no");
INSERT INTO `wp_options` VALUES("93008", "_wc_session_a6bc8e8ece63294aa5955e61deb5d291", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("46377", "tp_eg_valid-notice", "false", "yes");
INSERT INTO `wp_options` VALUES("63618", "_wc_session_expires_3ece149b6f41323598a15ada0b0ad786", "1440077771", "no");
INSERT INTO `wp_options` VALUES("63617", "_wc_session_3ece149b6f41323598a15ada0b0ad786", "a:20:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("98324", "_wc_session_4e78d257ec046dd56b79a38271b2d6a0", "a:21:{s:4:\"cart\";s:783:\"a:2:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a02dc882c2d8e6d2d8f50d91aaa28a2d\";a:9:{s:10:\"product_id\";i:17147;s:12:\"variation_id\";i:17164;s:9:\"variation\";a:2:{s:18:\"attribute_pa_sizes\";s:5:\"small\";s:19:\"attribute_pa_colors\";s:5:\"white\";}s:8:\"quantity\";i:2;s:10:\"line_total\";d:220;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:220;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:308.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";d:308.990000000000009094947017729282379150390625;s:8:\"subtotal\";d:308.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:308.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("48887", "_wc_session_f6dd2830e379ed204ee88d48838c6a4d", "a:23:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:109;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("48888", "_wc_session_expires_f6dd2830e379ed204ee88d48838c6a4d", "1439005601", "no");
INSERT INTO `wp_options` VALUES("49646", "woocommerce_flat_rate_settings", "a:13:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:9:\"Flat Rate\";s:12:\"availability\";s:3:\"all\";s:9:\"countries\";s:0:\"\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:0:\"\";s:4:\"type\";s:5:\"class\";s:7:\"options\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:11:\"minimum_fee\";s:0:\"\";s:3:\"fee\";s:0:\"\";s:14:\"cost_per_order\";s:0:\"\";s:13:\"no_class_cost\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("49647", "woocommerce_international_delivery_settings", "a:13:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:9:\"Flat Rate\";s:12:\"availability\";s:9:\"including\";s:9:\"countries\";s:0:\"\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:0:\"\";s:4:\"type\";s:5:\"class\";s:7:\"options\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:11:\"minimum_fee\";s:0:\"\";s:3:\"fee\";s:0:\"\";s:14:\"cost_per_order\";s:0:\"\";s:13:\"no_class_cost\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("49243", "_wc_session_f242f08af97b4067f352235ffeb3c802", "a:23:{s:4:\"cart\";s:616:\"a:2:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:307;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";d:307;s:8:\"subtotal\";i:307;s:15:\"subtotal_ex_tax\";i:307;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49244", "_wc_session_255b26a3162c5eb1cbb661ec4fce078b", "a:20:{s:4:\"cart\";s:710:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:246.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:246.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:246.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49245", "_wc_session_bae7ae1d7c53f5d8cc426ec0d613ba1d", "a:20:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49246", "_wc_session_expires_255b26a3162c5eb1cbb661ec4fce078b", "1439020941", "no");
INSERT INTO `wp_options` VALUES("49247", "_wc_session_expires_bae7ae1d7c53f5d8cc426ec0d613ba1d", "1439020941", "no");
INSERT INTO `wp_options` VALUES("49248", "_wc_session_expires_f242f08af97b4067f352235ffeb3c802", "1439020941", "no");
INSERT INTO `wp_options` VALUES("49249", "_wc_session_dfb54f619542e6120c713e89957fd32a", "a:23:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49250", "_wc_session_expires_dfb54f619542e6120c713e89957fd32a", "1439022626", "no");
INSERT INTO `wp_options` VALUES("49251", "wpseo", "a:20:{s:14:\"blocking_files\";a:0:{}s:26:\"ignore_blog_public_warning\";b:0;s:31:\"ignore_meta_description_warning\";b:0;s:20:\"ignore_page_comments\";b:0;s:16:\"ignore_permalink\";b:0;s:15:\"ms_defaults_set\";b:0;s:23:\"theme_description_found\";s:0:\"\";s:21:\"theme_has_description\";b:0;s:7:\"version\";s:5:\"2.2.1\";s:11:\"alexaverify\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("49252", "wpseo_permalinks", "a:13:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("49253", "wpseo_titles", "a:167:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:6:\"noydir\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"metakey-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:16:\"showdate-product\";b:0;s:19:\"hideeditbox-product\";b:0;s:12:\"title-header\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-header\";s:0:\"\";s:14:\"metakey-header\";s:0:\"\";s:14:\"noindex-header\";b:0;s:15:\"showdate-header\";b:0;s:18:\"hideeditbox-header\";b:0;s:15:\"title-myclients\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-myclients\";s:0:\"\";s:17:\"metakey-myclients\";s:0:\"\";s:17:\"noindex-myclients\";b:0;s:18:\"showdate-myclients\";b:0;s:21:\"hideeditbox-myclients\";b:0;s:15:\"title-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-portfolio\";s:0:\"\";s:17:\"metakey-portfolio\";s:0:\"\";s:17:\"noindex-portfolio\";b:0;s:18:\"showdate-portfolio\";b:0;s:21:\"hideeditbox-portfolio\";b:0;s:13:\"title-pricing\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-pricing\";s:0:\"\";s:15:\"metakey-pricing\";s:0:\"\";s:15:\"noindex-pricing\";b:0;s:16:\"showdate-pricing\";b:0;s:19:\"hideeditbox-pricing\";b:0;s:10:\"title-team\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-team\";s:0:\"\";s:12:\"metakey-team\";s:0:\"\";s:12:\"noindex-team\";b:0;s:13:\"showdate-team\";b:0;s:16:\"hideeditbox-team\";b:0;s:17:\"title-testimonial\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-testimonial\";s:0:\"\";s:19:\"metakey-testimonial\";s:0:\"\";s:19:\"noindex-testimonial\";b:0;s:20:\"showdate-testimonial\";b:0;s:23:\"hideeditbox-testimonial\";b:0;s:20:\"title-essential_grid\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-essential_grid\";s:0:\"\";s:22:\"metakey-essential_grid\";s:0:\"\";s:22:\"noindex-essential_grid\";b:0;s:23:\"showdate-essential_grid\";b:0;s:26:\"hideeditbox-essential_grid\";b:0;s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"metakey-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:25:\"title-ptarchive-myclients\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-ptarchive-myclients\";s:0:\"\";s:27:\"metakey-ptarchive-myclients\";s:0:\"\";s:27:\"bctitle-ptarchive-myclients\";s:0:\"\";s:27:\"noindex-ptarchive-myclients\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:21:\"title-tax-product_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:23:\"metakey-tax-product_cat\";s:0:\"\";s:27:\"hideeditbox-tax-product_cat\";b:0;s:23:\"noindex-tax-product_cat\";b:0;s:21:\"title-tax-product_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:23:\"metakey-tax-product_tag\";s:0:\"\";s:27:\"hideeditbox-tax-product_tag\";b:0;s:23:\"noindex-tax-product_tag\";b:0;s:32:\"title-tax-product_shipping_class\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:34:\"metakey-tax-product_shipping_class\";s:0:\"\";s:38:\"hideeditbox-tax-product_shipping_class\";b:0;s:34:\"noindex-tax-product_shipping_class\";b:0;s:25:\"title-tax-clientscategory\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-clientscategory\";s:0:\"\";s:27:\"metakey-tax-clientscategory\";s:0:\"\";s:31:\"hideeditbox-tax-clientscategory\";b:0;s:27:\"noindex-tax-clientscategory\";b:0;s:28:\"title-tax-portfolio_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-portfolio_category\";s:0:\"\";s:30:\"metakey-tax-portfolio_category\";s:0:\"\";s:34:\"hideeditbox-tax-portfolio_category\";b:0;s:30:\"noindex-tax-portfolio_category\";b:0;s:23:\"title-tax-portfolio_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-tax-portfolio_tag\";s:0:\"\";s:25:\"metakey-tax-portfolio_tag\";s:0:\"\";s:29:\"hideeditbox-tax-portfolio_tag\";b:0;s:25:\"noindex-tax-portfolio_tag\";b:0;s:26:\"title-tax-pricing_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-pricing_category\";s:0:\"\";s:28:\"metakey-tax-pricing_category\";s:0:\"\";s:32:\"hideeditbox-tax-pricing_category\";b:0;s:28:\"noindex-tax-pricing_category\";b:0;s:23:\"title-tax-team_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-tax-team_category\";s:0:\"\";s:25:\"metakey-tax-team_category\";s:0:\"\";s:29:\"hideeditbox-tax-team_category\";b:0;s:25:\"noindex-tax-team_category\";b:0;s:30:\"title-tax-testimonial_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:33:\"metadesc-tax-testimonial_category\";s:0:\"\";s:32:\"metakey-tax-testimonial_category\";s:0:\"\";s:36:\"hideeditbox-tax-testimonial_category\";b:0;s:32:\"noindex-tax-testimonial_category\";b:0;s:25:\"title-tax-testimonial_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-testimonial_tag\";s:0:\"\";s:27:\"metakey-tax-testimonial_tag\";s:0:\"\";s:31:\"hideeditbox-tax-testimonial_tag\";b:0;s:27:\"noindex-tax-testimonial_tag\";b:0;s:33:\"title-tax-essential_grid_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:36:\"metadesc-tax-essential_grid_category\";s:0:\"\";s:35:\"metakey-tax-essential_grid_category\";s:0:\"\";s:39:\"hideeditbox-tax-essential_grid_category\";b:0;s:35:\"noindex-tax-essential_grid_category\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("49254", "wpseo_social", "a:21:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"988a6e34877957a50f2086aa0800fcc9\";s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:10:\"googleplus\";b:0;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("49255", "wpseo_rss", "a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}", "yes");
INSERT INTO `wp_options` VALUES("49256", "wpseo_internallinks", "a:28:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;s:26:\"post_types-product-maintax\";i:0;s:28:\"post_types-myclients-maintax\";i:0;s:28:\"post_types-portfolio-maintax\";i:0;s:26:\"post_types-pricing-maintax\";i:0;s:23:\"post_types-team-maintax\";i:0;s:30:\"post_types-testimonial-maintax\";i:0;s:33:\"post_types-essential_grid-maintax\";i:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;s:33:\"taxonomy-clientscategory-ptparent\";i:0;s:36:\"taxonomy-portfolio_category-ptparent\";i:0;s:31:\"taxonomy-portfolio_tag-ptparent\";i:0;s:34:\"taxonomy-pricing_category-ptparent\";i:0;s:31:\"taxonomy-team_category-ptparent\";i:0;s:38:\"taxonomy-testimonial_category-ptparent\";i:0;s:33:\"taxonomy-testimonial_tag-ptparent\";i:0;s:41:\"taxonomy-essential_grid_category-ptparent\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("49257", "wpseo_xml", "a:36:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:33:\"user_role-customer-not_in_sitemap\";b:0;s:37:\"user_role-shop_manager-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:0;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;s:33:\"post_types-product-not_in_sitemap\";b:0;s:32:\"post_types-header-not_in_sitemap\";b:0;s:35:\"post_types-myclients-not_in_sitemap\";b:0;s:35:\"post_types-portfolio-not_in_sitemap\";b:0;s:33:\"post_types-pricing-not_in_sitemap\";b:0;s:30:\"post_types-team-not_in_sitemap\";b:0;s:37:\"post_types-testimonial-not_in_sitemap\";b:0;s:40:\"post_types-essential_grid-not_in_sitemap\";b:0;s:37:\"taxonomies-product_cat-not_in_sitemap\";b:0;s:37:\"taxonomies-product_tag-not_in_sitemap\";b:0;s:48:\"taxonomies-product_shipping_class-not_in_sitemap\";b:0;s:41:\"taxonomies-clientscategory-not_in_sitemap\";b:0;s:44:\"taxonomies-portfolio_category-not_in_sitemap\";b:0;s:39:\"taxonomies-portfolio_tag-not_in_sitemap\";b:0;s:42:\"taxonomies-pricing_category-not_in_sitemap\";b:0;s:39:\"taxonomies-team_category-not_in_sitemap\";b:0;s:46:\"taxonomies-testimonial_category-not_in_sitemap\";b:0;s:41:\"taxonomies-testimonial_tag-not_in_sitemap\";b:0;s:49:\"taxonomies-essential_grid_category-not_in_sitemap\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("49258", "wordpress-seo-premium_license", "a:3:{s:3:\"key\";s:0:\"\";s:6:\"status\";s:0:\"\";s:11:\"expiry_date\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("49259", "wpseo-premium-redirects", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("49260", "wpseo-premium-redirects-regex", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("49261", "wpseo_current_version", "16", "yes");
INSERT INTO `wp_options` VALUES("49262", "woocommerce_permalinks", "a:4:{s:13:\"category_base\";s:0:\"\";s:8:\"tag_base\";s:0:\"\";s:14:\"attribute_base\";s:0:\"\";s:12:\"product_base\";s:19:\"/shop/%product_cat%\";}", "yes");
INSERT INTO `wp_options` VALUES("49641", "woocommerce_language_pack_version", "a:2:{i:0;s:6:\"2.4.10\";i:1;s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("49637", "woocommerce_calc_discounts_sequentially", "yes", "no");
INSERT INTO `wp_options` VALUES("49578", "_wc_session_04d79eabf3c4e94adfd4bad182af1cd7", "a:20:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("89310", "_wc_session_expires_fac3387e08e9862d2673923226b89779", "1441602321", "no");
INSERT INTO `wp_options` VALUES("89309", "_wc_session_fac3387e08e9862d2673923226b89779", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:97.9800000000000039790393202565610408782958984375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"subtotal\";d:97.9800000000000039790393202565610408782958984375;s:15:\"subtotal_ex_tax\";d:97.9800000000000039790393202565610408782958984375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("62590", "bwp_minify_version", "1.3.3", "yes");
INSERT INTO `wp_options` VALUES("62593", "bwp_minify_advanced", "a:8:{s:17:\"input_fly_minpath\";s:0:\"\";s:23:\"input_nginx_config_file\";s:0:\"\";s:14:\"input_cdn_host\";s:0:\"\";s:17:\"input_cdn_host_js\";s:0:\"\";s:18:\"input_cdn_host_css\";s:0:\"\";s:14:\"enable_fly_min\";s:0:\"\";s:10:\"enable_cdn\";s:0:\"\";s:19:\"select_cdn_ssl_type\";s:3:\"off\";}", "yes");
INSERT INTO `wp_options` VALUES("62589", "bwp_minify_detector_log", "a:3:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:37:{s:27:\"cmssuperheroes-font-stroke7\";a:9:{s:6:\"handle\";s:27:\"cmssuperheroes-font-stroke7\";s:3:\"src\";s:87:\"themeforest/exo-theme/wp-content/plugins/cmssuperheroes/assets/css/Pe-icon-7-stroke.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:8:\"colorbox\";a:9:{s:6:\"handle\";s:8:\"colorbox\";s:3:\"src\";s:79:\"themeforest/exo-theme/wp-content/plugins/cmssuperheroes/assets/css/colorbox.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:16:\"cshero_portfolio\";a:9:{s:6:\"handle\";s:16:\"cshero_portfolio\";s:3:\"src\";s:104:\"themeforest/exo-theme/wp-content/plugins/cmssuperheroes/framework/shortcodes/portfolio/css/portfolio.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:14:\"contact-form-7\";a:9:{s:6:\"handle\";s:14:\"contact-form-7\";s:3:\"src\";s:79:\"themeforest/exo-theme/wp-content/plugins/contact-form-7/includes/css/styles.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:30:\"essential-grid-plugin-settings\";a:9:{s:6:\"handle\";s:30:\"essential-grid-plugin-settings\";s:3:\"src\";s:86:\"themeforest/exo-theme/wp-content/plugins/essential-grid/public/assets/css/settings.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:12:\"tp-open-sans\";a:9:{s:6:\"handle\";s:12:\"tp-open-sans\";s:3:\"src\";s:68:\"http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:12:\"tp-open-sans\";s:5:\"media\";s:3:\"all\";}s:10:\"tp-raleway\";a:9:{s:6:\"handle\";s:10:\"tp-raleway\";s:3:\"src\";s:82:\"http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:10:\"tp-raleway\";s:5:\"media\";s:3:\"all\";}s:14:\"tp-droid-serif\";a:9:{s:6:\"handle\";s:14:\"tp-droid-serif\";s:3:\"src\";s:58:\"http://fonts.googleapis.com/css?family=Droid+Serif:400,700\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:14:\"tp-droid-serif\";s:5:\"media\";s:3:\"all\";}s:21:\"tp-opensanscondendsed\";a:9:{s:6:\"handle\";s:21:\"tp-opensanscondendsed\";s:3:\"src\";s:58:\"http://fonts.googleapis.com/css?family=Open Sans Condensed\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:21:\"tp-opensanscondendsed\";s:5:\"media\";s:3:\"all\";}s:7:\"tp-lato\";a:9:{s:6:\"handle\";s:7:\"tp-lato\";s:3:\"src\";s:89:\"http://fonts.googleapis.com/css?family=Lato:700,700italic,400,400italic,300italic,300,900\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:7:\"tp-lato\";s:5:\"media\";s:3:\"all\";}s:15:\"tp-merriweather\";a:9:{s:6:\"handle\";s:15:\"tp-merriweather\";s:3:\"src\";s:97:\"http://fonts.googleapis.com/css?family=Merriweather:700,700italic,400,400italic,300italic,300,900\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:15:\"tp-merriweather\";s:5:\"media\";s:3:\"all\";}s:18:\"rs-plugin-settings\";a:9:{s:6:\"handle\";s:18:\"rs-plugin-settings\";s:3:\"src\";s:77:\"themeforest/exo-theme/wp-content/plugins/revslider/rs-plugin/css/settings.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:18:\"woocommerce-layout\";a:9:{s:6:\"handle\";s:18:\"woocommerce-layout\";s:3:\"src\";s:86:\"themeforest/exo-theme/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:23:\"woocommerce-smallscreen\";a:9:{s:6:\"handle\";s:23:\"woocommerce-smallscreen\";s:3:\"src\";s:91:\"themeforest/exo-theme/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:23:\"woocommerce-smallscreen\";s:5:\"media\";s:34:\"only screen and (max-width: 768px)\";}s:19:\"woocommerce-general\";a:9:{s:6:\"handle\";s:19:\"woocommerce-general\";s:3:\"src\";s:79:\"themeforest/exo-theme/wp-content/plugins/woocommerce/assets/css/woocommerce.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:9:\"bootstrap\";a:9:{s:6:\"handle\";s:9:\"bootstrap\";s:3:\"src\";s:71:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/bootstrap.min.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:12:\"font-awesome\";a:9:{s:6:\"handle\";s:12:\"font-awesome\";s:3:\"src\";s:107:\"themeforest/exo-theme/wp-content/plugins/js_composer/assets/lib/bower/font-awesome/css/font-awesome.min.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:12:\"font-awesome\";s:5:\"media\";s:6:\"screen\";}s:13:\"font-ionicons\";a:9:{s:6:\"handle\";s:13:\"font-ionicons\";s:3:\"src\";s:70:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/ionicons.min.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:27:\"cmssuperheroes-font-stroke7\";s:5:\"media\";s:3:\"all\";}s:16:\"animate-elements\";a:9:{s:6:\"handle\";s:16:\"animate-elements\";s:3:\"src\";s:77:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/cs-animate-elements.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:17:\"animations-column\";a:9:{s:6:\"handle\";s:17:\"animations-column\";s:3:\"src\";s:75:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/animations-column.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:11:\"woocommerce\";a:9:{s:6:\"handle\";s:11:\"woocommerce\";s:3:\"src\";s:69:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/woocommerce.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:5:\"style\";a:9:{s:6:\"handle\";s:5:\"style\";s:3:\"src\";s:59:\"themeforest/exo-theme/wp-content/themes/exo-theme/style.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:8:\"linecons\";a:9:{s:6:\"handle\";s:8:\"linecons\";s:3:\"src\";s:75:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/vc_linecons_icons.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:8:\"typicons\";a:9:{s:6:\"handle\";s:8:\"typicons\";s:3:\"src\";s:66:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/typicons.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:10:\"openiconic\";a:9:{s:6:\"handle\";s:10:\"openiconic\";s:3:\"src\";s:71:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/vc_openiconic.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:6:\"entypo\";a:9:{s:6:\"handle\";s:6:\"entypo\";s:3:\"src\";s:67:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/vc_entypo.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:12:\"dynamic-main\";a:9:{s:6:\"handle\";s:12:\"dynamic-main\";s:3:\"src\";s:65:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/dynamic.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:26:\"widget_cart_search_scripts\";a:9:{s:6:\"handle\";s:26:\"widget_cart_search_scripts\";s:3:\"src\";s:79:\"themeforest/exo-theme/wp-content/themes/exo-theme/framework/widgets/widgets.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:16:\"animate-elements\";s:5:\"media\";s:3:\"all\";}s:28:\"redux-google-fonts-smof_data\";a:9:{s:6:\"handle\";s:28:\"redux-google-fonts-smof_data\";s:3:\"src\";s:283:\"http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic%7COpen+Sans:300,400,600,700,800,300italic,400italic,600italic,700italic,800italic%7CMerriweather:300,400,700,900,300italic,400italic,700italic,900italic&amp;subset=latin\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:28:\"redux-google-fonts-smof_data\";s:5:\"media\";s:3:\"all\";}s:9:\"open-sans\";a:9:{s:6:\"handle\";s:9:\"open-sans\";s:3:\"src\";s:108:\"//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,300,400,600&subset=latin,latin-ext\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:9:\"open-sans\";s:5:\"media\";s:3:\"all\";}s:9:\"dashicons\";a:9:{s:6:\"handle\";s:9:\"dashicons\";s:3:\"src\";s:34:\"/wp-includes/css/dashicons.min.css\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:9:\"dashicons\";s:5:\"media\";s:3:\"all\";}s:9:\"admin-bar\";a:9:{s:6:\"handle\";s:9:\"admin-bar\";s:3:\"src\";s:34:\"/wp-includes/css/admin-bar.min.css\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";a:2:{i:0;s:9:\"open-sans\";i:1;s:9:\"dashicons\";}s:8:\"position\";s:17:\"ignored in header\";s:5:\"order\";i:3;s:5:\"group\";s:9:\"admin-bar\";s:5:\"media\";s:3:\"all\";}s:17:\"js_composer_front\";a:9:{s:6:\"handle\";s:17:\"js_composer_front\";s:3:\"src\";s:79:\"themeforest/exo-theme/wp-content/plugins/js_composer/assets/css/js_composer.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in header\";s:5:\"order\";i:2;s:5:\"group\";s:17:\"js_composer_front\";s:5:\"media\";s:3:\"all\";}s:14:\"lux.background\";a:9:{s:6:\"handle\";s:14:\"lux.background\";s:3:\"src\";s:72:\"themeforest/exo-theme/wp-content/themes/exo-theme/css/lux.background.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in footer\";s:5:\"order\";i:4;s:5:\"group\";s:14:\"lux.background\";s:5:\"media\";s:3:\"all\";}s:81:\"vc_google_fonts_lato100100italic300300italicregularitalic700700italic900900italic\";a:9:{s:6:\"handle\";s:81:\"vc_google_fonts_lato100100italic300300italicregularitalic700700italic900900italic\";s:3:\"src\";s:122:\"//fonts.googleapis.com/css?family=Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic&subset=latin\";s:3:\"min\";b:0;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:17:\"ignored in footer\";s:5:\"order\";i:5;s:5:\"group\";s:81:\"vc_google_fonts_lato100100italic300300italicregularitalic700700italic900900italic\";s:5:\"media\";s:3:\"all\";}s:25:\"cshero-fancybox-animation\";a:9:{s:6:\"handle\";s:25:\"cshero-fancybox-animation\";s:3:\"src\";s:102:\"themeforest/exo-theme/wp-content/plugins/cmssuperheroes/framework/shortcodes/fancybox/css/fancybox.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in footer\";s:5:\"order\";i:4;s:5:\"group\";s:14:\"lux.background\";s:5:\"media\";s:3:\"all\";}s:25:\"fancybox-fancybox.layout5\";a:9:{s:6:\"handle\";s:25:\"fancybox-fancybox.layout5\";s:3:\"src\";s:97:\"themeforest/exo-theme/wp-content/themes/exo-theme/cms_templates/fancybox/css/fancybox.layout5.css\";s:3:\"min\";b:1;s:2:\"wp\";b:0;s:6:\"depend\";b:0;s:8:\"position\";s:18:\"minified in footer\";s:5:\"order\";i:4;s:5:\"group\";s:14:\"lux.background\";s:5:\"media\";s:3:\"all\";}}s:6:\"groups\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("62588", "bwp_minify_general", "a:24:{s:12:\"input_minurl\";s:0:\"\";s:13:\"input_minpath\";s:0:\"\";s:15:\"input_cache_dir\";s:0:\"\";s:14:\"input_doc_root\";s:0:\"\";s:14:\"input_maxfiles\";s:2:\"10\";s:12:\"input_maxage\";s:1:\"1\";s:12:\"input_ignore\";s:38:\"admin-bar\r\njquery-core\r\njquery-migrate\";s:12:\"input_header\";s:0:\"\";s:12:\"input_direct\";s:0:\"\";s:12:\"input_footer\";s:0:\"\";s:14:\"input_oblivion\";s:0:\"\";s:18:\"input_style_ignore\";s:20:\"admin-bar\r\ndashicons\";s:18:\"input_style_direct\";s:0:\"\";s:20:\"input_style_oblivion\";s:0:\"\";s:19:\"input_custom_buster\";s:0:\"\";s:13:\"enable_min_js\";s:0:\"\";s:14:\"enable_min_css\";s:3:\"yes\";s:15:\"enable_bloginfo\";s:0:\"\";s:22:\"enable_external_origin\";s:0:\"\";s:17:\"enable_css_bubble\";s:3:\"yes\";s:22:\"enable_cache_file_lock\";s:3:\"yes\";s:12:\"enable_debug\";s:0:\"\";s:18:\"select_buster_type\";s:4:\"none\";s:16:\"select_time_type\";s:5:\"86400\";}", "yes");
INSERT INTO `wp_options` VALUES("49579", "_wc_session_expires_04d79eabf3c4e94adfd4bad182af1cd7", "1439148203", "no");
INSERT INTO `wp_options` VALUES("49580", "_wc_session_da18b27f97cf37fe69572106ec93dd18", "a:25:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"SE\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"SE\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("49581", "_wc_session_expires_da18b27f97cf37fe69572106ec93dd18", "1439281630", "no");
INSERT INTO `wp_options` VALUES("49582", "_wc_session_559555e318176a58c000d2b43b0144af", "a:24:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"ES\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"ES\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("49583", "_wc_session_expires_559555e318176a58c000d2b43b0144af", "1439282337", "no");
INSERT INTO `wp_options` VALUES("49584", "_wc_session_cb4153b7c0d6350fa373a30e32430c93", "a:20:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49585", "_wc_session_expires_cb4153b7c0d6350fa373a30e32430c93", "1439291756", "no");
INSERT INTO `wp_options` VALUES("49586", "_wc_session_b475f9be82ccd720ae8ca969ad15dbab", "a:20:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49587", "_wc_session_expires_b475f9be82ccd720ae8ca969ad15dbab", "1439316490", "no");
INSERT INTO `wp_options` VALUES("49588", "_wc_session_03d70583fb57f5f47162573590f92d97", "a:23:{s:4:\"cart\";s:403:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49589", "_wc_session_expires_03d70583fb57f5f47162573590f92d97", "1439329010", "no");
INSERT INTO `wp_options` VALUES("49590", "_wc_session_435f16cafd9a8e2c1ecbf7eba1701ca6", "a:25:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"ZA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"ZA\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("49591", "_wc_session_expires_435f16cafd9a8e2c1ecbf7eba1701ca6", "1439330833", "no");
INSERT INTO `wp_options` VALUES("49592", "_wc_session_ba8f3319944b7d9459b0aeeaeb9350ec", "a:20:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49593", "_wc_session_expires_ba8f3319944b7d9459b0aeeaeb9350ec", "1439334117", "no");
INSERT INTO `wp_options` VALUES("49594", "_wc_session_68daae1064933eb0ffcc7be6a0c11c86", "a:21:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("49595", "_wc_session_expires_68daae1064933eb0ffcc7be6a0c11c86", "1439334122", "no");
INSERT INTO `wp_options` VALUES("49596", "_wc_session_3f17640f59754889baeb16bf48dda451", "a:20:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49597", "_wc_session_expires_3f17640f59754889baeb16bf48dda451", "1439349132", "no");
INSERT INTO `wp_options` VALUES("49598", "_wc_session_8ec02d834e4decb34ab015b71d529af0", "a:20:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49599", "_wc_session_expires_8ec02d834e4decb34ab015b71d529af0", "1439358520", "no");
INSERT INTO `wp_options` VALUES("49600", "_wc_session_cd19c213e6a0ffe6a7fff65c9e77efd3", "a:22:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49601", "_wc_session_expires_cd19c213e6a0ffe6a7fff65c9e77efd3", "1439358522", "no");
INSERT INTO `wp_options` VALUES("49602", "_wc_session_8c94933ebfa20383a3a3670d2dc34ef7", "a:20:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49603", "_wc_session_expires_8c94933ebfa20383a3a3670d2dc34ef7", "1439358522", "no");
INSERT INTO `wp_options` VALUES("49604", "sumome_site_id", "f34383afbcdb11f592739cd32b54b64064c94c0a63e5bf535c2fec9cb64f96b9", "yes");
INSERT INTO `wp_options` VALUES("49605", "_wc_session_8e398b9c0e238f19728582156b228f1e", "a:20:{s:4:\"cart\";s:1410:\"a:4:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:345.98000000000001818989403545856475830078125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:4;s:5:\"total\";i:0;s:8:\"subtotal\";d:345.98000000000001818989403545856475830078125;s:15:\"subtotal_ex_tax\";d:345.98000000000001818989403545856475830078125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49606", "_wc_session_expires_8e398b9c0e238f19728582156b228f1e", "1439362795", "no");
INSERT INTO `wp_options` VALUES("49607", "_wc_session_b35a9ffd7352f964584a327eff6352d9", "a:23:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49608", "_wc_session_expires_b35a9ffd7352f964584a327eff6352d9", "1439368522", "no");
INSERT INTO `wp_options` VALUES("49609", "_wc_session_d75bdbc246edebf344059f8b7b0d6339", "a:20:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49610", "_wc_session_expires_d75bdbc246edebf344059f8b7b0d6339", "1439374364", "no");
INSERT INTO `wp_options` VALUES("49611", "_wc_session_e48315edeaf4e41170a0e66337032bb7", "a:21:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("49612", "_wc_session_expires_e48315edeaf4e41170a0e66337032bb7", "1439383147", "no");
INSERT INTO `wp_options` VALUES("49613", "_wc_session_e771264c77b24fc3a4d4920d179e6c0a", "a:25:{s:4:\"cart\";s:309:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("49614", "_wc_session_expires_e771264c77b24fc3a4d4920d179e6c0a", "1439385963", "no");
INSERT INTO `wp_options` VALUES("49615", "_wc_session_93a1f8e9d15e87e43145d84efd158bb2", "a:20:{s:4:\"cart\";s:614:\"a:2:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:208;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";i:208;s:15:\"subtotal_ex_tax\";i:208;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49616", "_wc_session_expires_93a1f8e9d15e87e43145d84efd158bb2", "1439389838", "no");
INSERT INTO `wp_options` VALUES("49617", "_wc_session_22ce194f9380ead67506ba96e8317b25", "a:25:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:8:\"customer\";s:395:\"a:14:{s:8:\"postcode\";s:8:\"45020800\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"BA\";s:7:\"country\";s:2:\"BR\";s:17:\"shipping_postcode\";s:8:\"45020800\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"BA\";s:16:\"shipping_country\";s:2:\"BR\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:1;}\";s:21:\"chosen_payment_method\";s:6:\"cheque\";}", "no");
INSERT INTO `wp_options` VALUES("49618", "_wc_session_expires_22ce194f9380ead67506ba96e8317b25", "1439395815", "no");
INSERT INTO `wp_options` VALUES("49619", "_wc_session_93f6c34876487830507f9927789e9c38", "a:25:{s:4:\"cart\";s:407:\"a:1:{s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:19.989999999999998436805981327779591083526611328125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"subtotal\";d:19.989999999999998436805981327779591083526611328125;s:15:\"subtotal_ex_tax\";d:19.989999999999998436805981327779591083526611328125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:6:\"paypal\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"IT\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"IT\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("49620", "_wc_session_expires_93f6c34876487830507f9927789e9c38", "1439400593", "no");
INSERT INTO `wp_options` VALUES("49621", "_wc_session_4d44dcff8a1c4ffe4d571fac664e2405", "a:20:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49622", "_wc_session_expires_4d44dcff8a1c4ffe4d571fac664e2405", "1439406406", "no");
INSERT INTO `wp_options` VALUES("49623", "_wc_session_b5f02e5fc0a4a951c612ed3a0aece8e6", "a:22:{s:4:\"cart\";s:706:\"a:2:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:187.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:187.990000000000009094947017729282379150390625;s:8:\"subtotal\";d:187.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:187.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49624", "_wc_session_expires_b5f02e5fc0a4a951c612ed3a0aece8e6", "1439443525", "no");
INSERT INTO `wp_options` VALUES("49625", "_wc_session_26182a275934347448408055a211e965", "a:25:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"TJ\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"TJ\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("49626", "_wc_session_expires_26182a275934347448408055a211e965", "1439446448", "no");
INSERT INTO `wp_options` VALUES("49627", "_wc_session_7135de0c1b888348cb7d0d1b10df91f8", "a:25:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:109;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:21:\"chosen_payment_method\";s:4:\"bacs\";s:8:\"customer\";s:375:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"BO\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"BO\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("49628", "_wc_session_expires_7135de0c1b888348cb7d0d1b10df91f8", "1439451512", "no");
INSERT INTO `wp_options` VALUES("49629", "_wc_session_6d8ba7bc7f647b2b2fede9200858672c", "a:21:{s:4:\"cart\";s:405:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("49630", "_wc_session_expires_6d8ba7bc7f647b2b2fede9200858672c", "1439474172", "no");
INSERT INTO `wp_options` VALUES("49631", "_wc_session_9965f8ea53f6d223288d2fba57509252", "a:23:{s:4:\"cart\";s:5393:\"a:14:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:266.970000000000027284841053187847137451171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:266.96999999999997044142219237983226776123046875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:436;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:436;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1714.8000000000001818989403545856475830078125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:27;s:5:\"total\";i:0;s:8:\"subtotal\";d:1714.8000000000001818989403545856475830078125;s:15:\"subtotal_ex_tax\";d:1714.8000000000001818989403545856475830078125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49632", "_wc_session_expires_9965f8ea53f6d223288d2fba57509252", "1439474172", "no");
INSERT INTO `wp_options` VALUES("49633", "_wc_session_050de0f42efe5ca9e0ac764855d527cb", "a:23:{s:4:\"cart\";s:5796:\"a:15:{s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:327;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:327;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:18.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:18.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1595.8000000000001818989403545856475830078125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:26;s:5:\"total\";i:0;s:8:\"subtotal\";d:1595.8000000000001818989403545856475830078125;s:15:\"subtotal_ex_tax\";d:1595.8000000000001818989403545856475830078125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:31:\"a:1:{i:0;s:13:\"free_shipping\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";}", "no");
INSERT INTO `wp_options` VALUES("49634", "_wc_session_expires_050de0f42efe5ca9e0ac764855d527cb", "1439492840", "no");
INSERT INTO `wp_options` VALUES("49635", "_wc_session_f9dddffcc10eab7565e091caf1383e7f", "a:20:{s:4:\"cart\";s:311:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("49636", "_wc_session_expires_f9dddffcc10eab7565e091caf1383e7f", "1439515581", "no");
INSERT INTO `wp_options` VALUES("50558", "_wc_session_8bf3bb654f3773ac73ca33b6f8490f2b", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("50559", "_wc_session_expires_8bf3bb654f3773ac73ca33b6f8490f2b", "1439561358", "no");
INSERT INTO `wp_options` VALUES("50560", "_wc_session_ad1b758cf01b5aec32d6aa7e8b0122d8", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:177.979999999999989768184605054557323455810546875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:177.979999999999989768184605054557323455810546875;s:15:\"subtotal_ex_tax\";d:177.979999999999989768184605054557323455810546875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("50561", "_wc_session_expires_ad1b758cf01b5aec32d6aa7e8b0122d8", "1439561358", "no");
INSERT INTO `wp_options` VALUES("77819", "_wc_session_629c04a28a716c5238a5addc70825eda", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("73147", "_wc_session_expires_80c13e0216d1a8e3eb644f4899c82895", "1440583615", "no");
INSERT INTO `wp_options` VALUES("73146", "_wc_session_80c13e0216d1a8e3eb644f4899c82895", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("106317", "_wc_session_557ac93e4c382d2b7f2c384915adcb02", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("106318", "_wc_session_expires_557ac93e4c382d2b7f2c384915adcb02", "1443169948", "no");
INSERT INTO `wp_options` VALUES("108441", "_wc_session_db65397c7602a3e41312d14951f8d03c", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("108442", "_wc_session_expires_db65397c7602a3e41312d14951f8d03c", "1443455937", "no");
INSERT INTO `wp_options` VALUES("108705", "_wc_session_997084afb5f349802cd4fc11f5d1c6e2", "a:21:{s:4:\"cart\";s:6:\"a:0:{}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:4483:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:10:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17151;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17151;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Black Floral Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"ox-spirit-level-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:19:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:19:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:72:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}}\";s:19:\"cart_contents_total\";i:0;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:0;s:5:\"total\";i:0;s:8:\"subtotal\";i:0;s:15:\"subtotal_ex_tax\";i:0;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("108706", "_wc_session_expires_997084afb5f349802cd4fc11f5d1c6e2", "1443530063", "no");
INSERT INTO `wp_options` VALUES("113900", "_wc_session_fc3befbe060bd64111dfde568371ba5a", "a:20:{s:4:\"cart\";s:704:\"a:2:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:157.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:157.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:157.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("113901", "_wc_session_expires_fc3befbe060bd64111dfde568371ba5a", "1444321665", "no");
INSERT INTO `wp_options` VALUES("116783", "_wc_session_dff483b90758d74786b789d745fbe14f", "a:22:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:109;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"MX\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"MX\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("116784", "_wc_session_expires_dff483b90758d74786b789d745fbe14f", "1444802713", "no");
INSERT INTO `wp_options` VALUES("117173", "_wc_session_30605b610c5a041daccc38a1797bfdc3", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("117174", "_wc_session_expires_30605b610c5a041daccc38a1797bfdc3", "1444849266", "no");
INSERT INTO `wp_options` VALUES("117270", "_wc_session_268530cee4850511058de921307ad912", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("117271", "_wc_session_expires_268530cee4850511058de921307ad912", "1444869794", "no");
INSERT INTO `wp_options` VALUES("119630", "_wc_session_dc23259d924bae5d33a4958792f2a2f4", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("119631", "_wc_session_expires_dc23259d924bae5d33a4958792f2a2f4", "1445243278", "no");
INSERT INTO `wp_options` VALUES("133529", "_wc_session_expires_c23e3c5a6321b8a20f41f58e43194752", "1447577194", "no");
INSERT INTO `wp_options` VALUES("133530", "_wc_session_170f815b0a68b40a30646a3e1ef5d201", "a:20:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("120761", "_wc_session_2c59381970d2d1081eee14bb808075b7", "a:22:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"RU\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"RU\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("120762", "_wc_session_expires_2c59381970d2d1081eee14bb808075b7", "1445445990", "no");
INSERT INTO `wp_options` VALUES("123694", "_wc_session_d3b1b79fe94b917b7dc3152275f8fca5", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("123695", "_wc_session_expires_d3b1b79fe94b917b7dc3152275f8fca5", "1445855396", "no");
INSERT INTO `wp_options` VALUES("125290", "_wc_session_bfe8cccaba204db188db14ec0259ac47", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("125291", "_wc_session_expires_bfe8cccaba204db188db14ec0259ac47", "1446173870", "no");
INSERT INTO `wp_options` VALUES("125292", "_wc_session_dd80c9321085258d44c2b9b53b6707e9", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:57060:\"a:13:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:10:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:198;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:198;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17222;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17222;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:57:24\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:57:24\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Black Suit\";s:12:\"post_excerpt\";s:545:\"Maecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"black-suit\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:57:24\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:57:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17222\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:2:\"99\";}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:10:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17149;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17149;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-22 01:57:41\";s:13:\"post_date_gmt\";s:19:\"2015-07-22 01:57:41\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:17:\"Cami Skater Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"ox-spirit-level-exo\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:26:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:26:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:70:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:10:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:266.970000000000027284841053187847137451171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:266.96999999999997044142219237983226776123046875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17145;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17145;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:30:46\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:30:46\";s:12:\"post_content\";s:976:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nOpsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:10:\"post_title\";s:13:\"Chelsea Boots\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"electronic-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:02:15\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:02:15\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1766\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"2\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"88.99\";}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:10:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17209;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17209;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:16:59\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:16:59\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:16:\"Light Blue Shirt\";s:12:\"post_excerpt\";s:491:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:16:\"light-blue-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:16:59\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:16:59\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17209\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"29.99\";}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:10:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17218;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17218;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:34:16\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:34:16\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:19:\"Pure Silk Black Tie\";s:12:\"post_excerpt\";s:335:\"Phasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"pure-silk-black-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:34:16\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:34:16\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17218\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"21.99\";}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:10:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17216;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17216;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:32:58\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:32:58\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Blue Tie\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-blue-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:32:58\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:32:58\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17216\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"19.99\";}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:10:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17220;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17220;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:52:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:52:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Pure Silk Grey Tie\";s:12:\"post_excerpt\";s:544:\"In dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"pure-silk-grey-tie\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:52:27\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:52:27\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17220\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"18.99\";}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:10:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17211;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17211;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:21:08\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:21:08\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:11:\"White Shirt\";s:12:\"post_excerpt\";s:491:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:11:\"white-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:21:08\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:21:08\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17211\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"31.99\";}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:10:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17152;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17152;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:45\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:45\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:33:\"Slim Fit Bright Blue 2 Piece Suit\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:24:\"wooden-handled-axe-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:11:34\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:11:34\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:75:\"http://tn.joomexp.com/wordpress/exo-theme/?product=wooden-handled-axe-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:10:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17151;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17151;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Black Floral Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"ox-spirit-level-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:19:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:19:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:72:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:10:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17144;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17144;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:19:35\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:19:35\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:12:\"Flat Loafers\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:15:\"ox-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:58:23\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:58:23\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1761\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:10:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17148;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17148;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:41:09\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:41:09\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:21:\"White Tailored Blazer\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"wooden-handled-axe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:29:43\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:29:43\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1772\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:10:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17150;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17150;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-22 02:14:37\";s:13:\"post_date_gmt\";s:19:\"2015-07-22 02:14:37\";s:12:\"post_content\";s:2771:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut at euismod ligula, quis posuere magna. Integer in tempus est. Aliquam erat volutpat. Fusce et dolor erat. Donec tempor, massa non ultricies cursus, velit est vehicula diam, sit amet maximus lacus nunc sed dui. Aliquam lacus enim, eleifend ut vestibulum vitae, gravida sit amet nibh. Vestibulum in vestibulum nulla. Praesent elementum suscipit lorem id tempus. Morbi vitae venenatis lectus. Aenean blandit risus quis dolor ultrices, eu ornare elit tempus. In hac habitasse platea dictumst. Duis in lorem interdum, iaculis enim quis, interdum quam. Duis neque sapien, cursus in fringilla in, elementum at dolor. Vivamus sit amet massa lorem. Mauris commodo vel odio sit amet vulputate. Nullam erat sapien, tempor eu semper et, convallis eget dolor.\r\n\r\nAliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros. Quisque varius neque sed tempor bibendum. Sed facilisis ullamcorper tortor, non pretium metus viverra eleifend.\r\n\r\nVestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Sed ut leo tincidunt, hendrerit tellus sed, congue arcu. Integer felis tortor, scelerisque vel congue vel, mattis eu purus. Nullam tempor feugiat elit vel sagittis. Integer eget ligula odio. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Sed in vestibulum urna. Nunc quis erat porta, volutpat ex id, dictum neque.\r\n\r\nDonec at feugiat dui, et sodales dui. Nulla in leo ut metus lacinia ultrices. Donec sagittis egestas lacinia. Suspendisse vel finibus enim. Nunc dapibus libero in quam consectetur, in sollicitudin tellus sagittis. Pellentesque condimentum mauris ut mi aliquam, vulputate consequat nibh egestas. Curabitur molestie urna nulla. Fusce varius mauris risus, quis mattis lorem dapibus ut.\r\n\r\nNullam consequat vitae urna aliquam consequat. Aliquam elementum odio ac tellus scelerisque, vel malesuada libero sodales. Phasellus et ante ante. Proin a turpis id erat fermentum commodo. Vestibulum risus mauris, feugiat et diam eu, fringilla facilisis ligula. Fusce ut porttitor urna, eget porttitor massa. Nam aliquet arcu in arcu ullamcorper interdum. Quisque pretium, ante nec ornare sollicitudin, nulla nibh commodo turpis, ac hendrerit ligula lorem ut augue. Nam varius faucibus enim, sed facilisis risus tincidunt quis. Integer efficitur bibendum eros, nec finibus erat efficitur in.\";s:10:\"post_title\";s:26:\"Monochrome Cami Midi Dress\";s:12:\"post_excerpt\";s:416:\"Aliquam in arcu eleifend, pretium orci et, rutrum purus. Pellentesque vitae lacinia leo. Fusce auctor metus vitae risus aliquet pellentesque. Mauris eu lorem varius, volutpat tortor vitae, laoreet metus. In lacinia iaculis ante in finibus. Praesent vel augue sed leo pulvinar pharetra a vitae ipsum. Duis elementum, sem tristique dignissim accumsan, lorem lacus pellentesque lorem, id commodo sapien diam vitae eros.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:22:\"wooden-handled-axe-exo\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:22:46\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:22:46\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:73:\"http://tn.joomexp.com/wordpress/exo-theme/?product=wooden-handled-axe-exo\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"78.99\";}}}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:109;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("125293", "_wc_session_expires_dd80c9321085258d44c2b9b53b6707e9", "1446173871", "no");
INSERT INTO `wp_options` VALUES("126338", "_wc_session_781f78b32882b8f111ad8607bc2e8bc1", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:146.969999999999998863131622783839702606201171875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:3;s:5:\"total\";i:0;s:8:\"subtotal\";d:146.969999999999998863131622783839702606201171875;s:15:\"subtotal_ex_tax\";d:146.969999999999998863131622783839702606201171875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("126339", "_wc_session_expires_781f78b32882b8f111ad8607bc2e8bc1", "1446302412", "no");
INSERT INTO `wp_options` VALUES("126372", "_wc_session_f322a950e0ebe11ebeb5d045f4628ada", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("126373", "_wc_session_expires_f322a950e0ebe11ebeb5d045f4628ada", "1446306335", "no");
INSERT INTO `wp_options` VALUES("128394", "_wc_session_f5b07715206bc56938e50155a01dc12d", "a:20:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("128395", "_wc_session_expires_f5b07715206bc56938e50155a01dc12d", "1446678836", "no");
INSERT INTO `wp_options` VALUES("133531", "_wc_session_expires_170f815b0a68b40a30646a3e1ef5d201", "1447577195", "no");
INSERT INTO `wp_options` VALUES("128892", "_wc_session_1ba1e0e68b519283bd8d0968d2b1f86a", "a:21:{s:4:\"cart\";s:3959:\"a:10:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:4;s:10:\"line_total\";d:195.960000000000007958078640513122081756591796875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:195.960000000000007958078640513122081756591796875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:43.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:43.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:59.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:59.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:15816:\"a:4:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:10:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17151;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17151;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-23 09:33:27\";s:13:\"post_date_gmt\";s:19:\"2015-07-23 09:33:27\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:18:\"Black Floral Dress\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"ox-spirit-level-exo-2\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 09:19:37\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 09:19:37\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:72:\"http://tn.joomexp.com/wordpress/exo-theme/?product=ox-spirit-level-exo-2\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"48.99\";}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:10:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17222;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17222;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:57:24\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:57:24\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Black Suit\";s:12:\"post_excerpt\";s:545:\"Maecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"black-suit\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:57:24\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:57:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17222\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:2:\"99\";}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:10:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17145;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17145;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-03-06 08:30:46\";s:13:\"post_date_gmt\";s:19:\"2015-03-06 08:30:46\";s:12:\"post_content\";s:976:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nOpsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:10:\"post_title\";s:13:\"Chelsea Boots\";s:12:\"post_excerpt\";s:489:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"electronic-spirit-level\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:02:15\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:02:15\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/themeforest/wp-spectrum-construction/?post_type=product&#038;p=1766\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"2\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"88.99\";}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:10:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:77.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:77.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}s:4:\"data\";O:17:\"WC_Product_Simple\":6:{s:2:\"id\";i:17214;s:4:\"post\";O:7:\"WP_Post\":24:{s:2:\"ID\";i:17214;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-07-30 10:24:44\";s:13:\"post_date_gmt\";s:19:\"2015-07-30 10:24:44\";s:12:\"post_content\";s:2552:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin non metus vel dui convallis vehicula. Maecenas hendrerit, libero eu sollicitudin varius, sapien sapien lacinia lectus, sed pretium nunc arcu sed ligula. Donec ut eros vel ante varius mattis. Quisque ultricies dignissim nibh, vitae mattis ligula posuere nec. Donec in urna a nisl finibus commodo. Fusce ac molestie velit. In hac habitasse platea dictumst. Duis ullamcorper laoreet turpis, nec scelerisque nulla rhoncus rhoncus.\r\n\r\nIn dolor mauris, feugiat a vehicula sit amet, viverra eget sapien. Donec neque ligula, dapibus at dapibus in, iaculis nec erat. Ut quis magna nec quam malesuada luctus id eu elit. Ut tempus ligula sapien, a ornare nisl mattis sit amet. Quisque tristique leo turpis, vel dignissim ante ornare sit amet. Aenean consequat feugiat ex quis fermentum. Sed varius ex id dictum lobortis. Vestibulum venenatis imperdiet tempor. Etiam lobortis mattis vehicula. Proin et semper lorem. Suspendisse non sapien ullamcorper, mollis purus non, blandit dolor.\r\n\r\nPellentesque eros dolor, fermentum vitae ex sit amet, tristique gravida lacus. Integer porttitor justo id risus finibus, nec egestas sem hendrerit. Nam mattis tortor metus. Curabitur condimentum ipsum tellus, non fermentum lorem fringilla quis. Integer consequat, nisl at condimentum facilisis, nisl dui interdum massa, sed semper nulla tortor a nibh. Curabitur vestibulum turpis felis, sed sodales mauris gravida sit amet. Nunc faucibus sodales porta. Phasellus maximus lacus sem. Suspendisse potenti. Ut finibus ligula vel vestibulum varius. Praesent in diam non tortor posuere porta. Mauris ornare tempor diam non commodo.\r\n\r\nPhasellus consequat molestie turpis sit amet posuere. Fusce non ex metus. Morbi tristique egestas tincidunt. Nullam at dignissim turpis. Sed maximus lectus ut nibh bibendum ultrices quis ac felis. Phasellus lobortis et nulla ac rutrum. Praesent congue, enim quis euismod imperdiet, sem arcu volutpat lorem, at ornare orci nisi id eros.\r\n\r\nMaecenas sed tristique lacus. Morbi fringilla lacus sit amet augue rutrum, ut mollis ipsum accumsan. Suspendisse potenti. Donec pharetra magna mollis, ornare libero quis, consequat dolor. Curabitur gravida porttitor libero id sodales. Pellentesque ultrices scelerisque nibh, a feugiat mauris malesuada id. Cras ullamcorper justo tempor accumsan mollis. Cras pharetra consequat commodo. Integer maximus risus eros, eget condimentum nisi pellentesque ac. Sed eget quam eu enim fringilla tempor. Aenean eu nibh ac felis condimentum rutrum ut a dui.\";s:10:\"post_title\";s:10:\"Grey Shirt\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:10:\"grey-shirt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2015-07-30 10:24:44\";s:17:\"post_modified_gmt\";s:19:\"2015-07-30 10:24:44\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:84:\"http://demo.cmssuperheroes.com/themeforest/exo-theme/?post_type=product&#038;p=17214\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:7:\"product\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}s:12:\"product_type\";s:6:\"simple\";s:17:\"\0*\0shipping_class\";s:0:\"\";s:20:\"\0*\0shipping_class_id\";i:0;s:5:\"price\";s:5:\"38.99\";}}}\";s:19:\"cart_contents_total\";d:732.8400000000000318323145620524883270263671875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:16;s:5:\"total\";i:0;s:8:\"subtotal\";d:732.8400000000000318323145620524883270263671875;s:15:\"subtotal_ex_tax\";d:732.8400000000000318323145620524883270263671875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("128893", "_wc_session_expires_1ba1e0e68b519283bd8d0968d2b1f86a", "1446751041", "no");
INSERT INTO `wp_options` VALUES("128894", "_wc_session_792d13f53ae3259d44393d78d088abeb", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("128895", "_wc_session_expires_792d13f53ae3259d44393d78d088abeb", "1446751042", "no");
INSERT INTO `wp_options` VALUES("129807", "_wc_session_88a4e998093a8801e371632d298129d8", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:97.9800000000000039790393202565610408782958984375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:97.9800000000000039790393202565610408782958984375;s:15:\"subtotal_ex_tax\";d:97.9800000000000039790393202565610408782958984375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129391", "_wc_session_879520d8af022afaa99e2d95fbf29b69", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";d:99;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129392", "_wc_session_expires_879520d8af022afaa99e2d95fbf29b69", "1446825944", "no");
INSERT INTO `wp_options` VALUES("129808", "_wc_session_expires_88a4e998093a8801e371632d298129d8", "1446893618", "no");
INSERT INTO `wp_options` VALUES("129886", "_wc_session_8245a62c84544ffdddd89b53da46305d", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129887", "_wc_session_expires_8245a62c84544ffdddd89b53da46305d", "1446901871", "no");
INSERT INTO `wp_options` VALUES("129888", "_wc_session_60cdd04dbe2402e1a4113dce8276c3e0", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129889", "_wc_session_expires_60cdd04dbe2402e1a4113dce8276c3e0", "1446901874", "no");
INSERT INTO `wp_options` VALUES("129890", "_wc_session_6ff3af2fa6159e5880e71999276fb072", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129891", "_wc_session_expires_6ff3af2fa6159e5880e71999276fb072", "1446901879", "no");
INSERT INTO `wp_options` VALUES("129892", "_wc_session_37c8adbc4752ad28ab26504c177f13ba", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129893", "_wc_session_expires_37c8adbc4752ad28ab26504c177f13ba", "1446901884", "no");
INSERT INTO `wp_options` VALUES("129894", "_wc_session_0fdf754f8e25293d911e7428da5e3af1", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129895", "_wc_session_expires_0fdf754f8e25293d911e7428da5e3af1", "1446901888", "no");
INSERT INTO `wp_options` VALUES("133528", "_wc_session_c23e3c5a6321b8a20f41f58e43194752", "a:20:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("129977", "_wc_session_35ecee1803452687d4c7e3eca162e578", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129978", "_wc_session_expires_35ecee1803452687d4c7e3eca162e578", "1446910823", "no");
INSERT INTO `wp_options` VALUES("129979", "_wc_session_4f53902cd7c136e2e30cfe9891045e90", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129980", "_wc_session_expires_4f53902cd7c136e2e30cfe9891045e90", "1446910829", "no");
INSERT INTO `wp_options` VALUES("129981", "_wc_session_b5b21f037dad798d3a19c63ef07b5c68", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129982", "_wc_session_expires_b5b21f037dad798d3a19c63ef07b5c68", "1446910836", "no");
INSERT INTO `wp_options` VALUES("129983", "_wc_session_b95e951630af432139bc5a6924efc986", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129984", "_wc_session_expires_b95e951630af432139bc5a6924efc986", "1446910849", "no");
INSERT INTO `wp_options` VALUES("129985", "_wc_session_6c284cc22c6ed966a082782b4bd0886e", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("129986", "_wc_session_expires_6c284cc22c6ed966a082782b4bd0886e", "1446910854", "no");
INSERT INTO `wp_options` VALUES("130133", "_wc_session_bea44cc26f444ba2a95a2d9f46a1ef57", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130134", "_wc_session_expires_bea44cc26f444ba2a95a2d9f46a1ef57", "1446933783", "no");
INSERT INTO `wp_options` VALUES("130135", "_wc_session_df1d16289d2c33c0b7c99f08aaa75cc1", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130136", "_wc_session_expires_df1d16289d2c33c0b7c99f08aaa75cc1", "1446933787", "no");
INSERT INTO `wp_options` VALUES("130137", "_wc_session_d7af0cd656f3a9264cb550d4bfb25796", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130138", "_wc_session_expires_d7af0cd656f3a9264cb550d4bfb25796", "1446933791", "no");
INSERT INTO `wp_options` VALUES("130139", "_wc_session_2ad2725ec5ec52cf273543daa5fa361e", "a:21:{s:4:\"cart\";s:402:\"a:1:{s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:48.99000000000000198951966012828052043914794921875;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:48.99000000000000198951966012828052043914794921875;s:15:\"subtotal_ex_tax\";d:48.99000000000000198951966012828052043914794921875;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130140", "_wc_session_expires_2ad2725ec5ec52cf273543daa5fa361e", "1446933803", "no");
INSERT INTO `wp_options` VALUES("130141", "_wc_session_792a14a5cdd099a361e2a040c2dcd0d3", "a:21:{s:4:\"cart\";s:400:\"a:1:{s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:88.9899999999999948840923025272786617279052734375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";d:88.9899999999999948840923025272786617279052734375;s:15:\"subtotal_ex_tax\";d:88.9899999999999948840923025272786617279052734375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130142", "_wc_session_expires_792a14a5cdd099a361e2a040c2dcd0d3", "1446933806", "no");
INSERT INTO `wp_options` VALUES("130398", "_wc_session_4d7f4a0530ad68b09d0dedd1dd187cad", "a:22:{s:4:\"cart\";s:704:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:157.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";d:157.990000000000009094947017729282379150390625;s:8:\"subtotal\";d:157.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:157.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";N;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:21:\"chosen_payment_method\";s:6:\"cheque\";s:8:\"customer\";s:379:\"a:14:{s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"KE\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"KE\";s:13:\"is_vat_exempt\";b:0;s:19:\"calculated_shipping\";b:0;}\";}", "no");
INSERT INTO `wp_options` VALUES("130399", "_wc_session_expires_4d7f4a0530ad68b09d0dedd1dd187cad", "1446979980", "no");
INSERT INTO `wp_options` VALUES("130420", "_wc_session_ab1f96022559b56e7ab38f2afc05d173", "a:21:{s:4:\"cart\";s:308:\"a:1:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:109;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:109;s:15:\"subtotal_ex_tax\";i:109;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130421", "_wc_session_bc417fe2080202f8623bb019deebfbe9", "a:21:{s:4:\"cart\";s:5755:\"a:15:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:146.969999999999998863131622783839702606201171875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:146.969999999999998863131622783839702606201171875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:3;s:10:\"line_total\";d:297;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:297;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:177.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:177.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"b449151eb61e7fdffc88095f40059ac3\";a:9:{s:10:\"product_id\";i:17218;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:21.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:21.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8991c12e821cb8a8d15bdd480f1c4c3f\";a:9:{s:10:\"product_id\";i:17216;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:19.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:19.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"e376d5d818f7665946b0a88c7632e311\";a:9:{s:10:\"product_id\";i:17220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:37.97999999999999687361196265555918216705322265625;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:37.97999999999999687361196265555918216705322265625;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"42b58d52344b20312a876e0bfbe95abb\";a:9:{s:10:\"product_id\";i:17209;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:29.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:29.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"cd6bc4ee9cef2af8e1c22cc80ca1f8c1\";a:9:{s:10:\"product_id\";i:17211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:31.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:31.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c7cd4536abacd24976a94ce7e5e10939\";a:9:{s:10:\"product_id\";i:17152;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"a9a7ab1b714b04eff25ce5e783135902\";a:9:{s:10:\"product_id\";i:17148;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:78.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:78.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:1295.82000000000016370904631912708282470703125;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:22;s:5:\"total\";i:0;s:8:\"subtotal\";d:1295.82000000000016370904631912708282470703125;s:15:\"subtotal_ex_tax\";d:1295.82000000000016370904631912708282470703125;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130422", "_wc_session_expires_ab1f96022559b56e7ab38f2afc05d173", "1446982454", "no");
INSERT INTO `wp_options` VALUES("130423", "_wc_session_expires_bc417fe2080202f8623bb019deebfbe9", "1446982454", "no");
INSERT INTO `wp_options` VALUES("130596", "_wc_session_634f5eaa4b4e3ab13bedb845ed105d9d", "a:21:{s:4:\"cart\";s:798:\"a:2:{s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:97.9800000000000039790393202565610408782958984375;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:97.9800000000000039790393202565610408782958984375;s:15:\"subtotal_ex_tax\";d:97.9800000000000039790393202565610408782958984375;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130597", "_wc_session_expires_634f5eaa4b4e3ab13bedb845ed105d9d", "1447011970", "no");
INSERT INTO `wp_options` VALUES("130598", "_wc_session_138a8eb3e1bd00562c29b74c2a9a0d5e", "a:21:{s:4:\"cart\";s:702:\"a:2:{s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8c2c809f0f90fb60826f6fe06add8fe9\";a:9:{s:10:\"product_id\";i:17145;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:88.9899999999999948840923025272786617279052734375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:88.9899999999999948840923025272786617279052734375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:197.990000000000009094947017729282379150390625;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:2;s:5:\"total\";i:0;s:8:\"subtotal\";d:197.990000000000009094947017729282379150390625;s:15:\"subtotal_ex_tax\";d:197.990000000000009094947017729282379150390625;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130599", "_wc_session_55d918fdf2d11c2d7e3dec5f97e6e16c", "a:21:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;}", "no");
INSERT INTO `wp_options` VALUES("130600", "_wc_session_expires_138a8eb3e1bd00562c29b74c2a9a0d5e", "1447011970", "no");
INSERT INTO `wp_options` VALUES("130601", "_wc_session_expires_55d918fdf2d11c2d7e3dec5f97e6e16c", "1447011971", "no");
INSERT INTO `wp_options` VALUES("134624", "woocommerce_admin_notices", "a:1:{i:0;s:14:\"template_files\";}", "yes");
INSERT INTO `wp_options` VALUES("134302", "_wc_session_3d0c3b24779908e108c8ddfc527269b8", "a:20:{s:4:\"cart\";s:306:\"a:1:{s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:23:\"coupon_discount_amounts\";s:6:\"a:0:{}\";s:27:\"coupon_discount_tax_amounts\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:19:\"cart_contents_total\";d:99;s:20:\"cart_contents_weight\";i:0;s:19:\"cart_contents_count\";i:1;s:5:\"total\";i:0;s:8:\"subtotal\";i:99;s:15:\"subtotal_ex_tax\";i:99;s:9:\"tax_total\";i:0;s:5:\"taxes\";s:6:\"a:0:{}\";s:14:\"shipping_taxes\";s:6:\"a:0:{}\";s:13:\"discount_cart\";i:0;s:17:\"discount_cart_tax\";i:0;s:14:\"shipping_total\";i:0;s:18:\"shipping_tax_total\";i:0;s:9:\"fee_total\";i:0;s:4:\"fees\";s:6:\"a:0:{}\";}", "no");
INSERT INTO `wp_options` VALUES("134303", "_wc_session_expires_3d0c3b24779908e108c8ddfc527269b8", "1447778369", "no");
INSERT INTO `wp_options` VALUES("138601", "_site_transient_timeout_browser_8027a9bbe7d325857442871a6dc18ae5", "1453254780", "yes");
INSERT INTO `wp_options` VALUES("138602", "_site_transient_browser_8027a9bbe7d325857442871a6dc18ae5", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"43.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;}", "yes");
INSERT INTO `wp_options` VALUES("138579", "_site_transient_timeout_browser_c6e0d466c988c4043691b020b1fec366", "1453225241", "yes");
INSERT INTO `wp_options` VALUES("138580", "_site_transient_browser_c6e0d466c988c4043691b020b1fec366", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"47.0.2526.106\";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;}", "yes");
INSERT INTO `wp_options` VALUES("139453", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1475294706", "no");
INSERT INTO `wp_options` VALUES("139454", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1475251506", "no");
INSERT INTO `wp_options` VALUES("139457", "_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b", "1475294706", "no");
INSERT INTO `wp_options` VALUES("139451", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1475294706", "no");
INSERT INTO `wp_options` VALUES("139455", "_transient_timeout_plugin_slugs", "1475339986", "no");
INSERT INTO `wp_options` VALUES("139456", "_transient_plugin_slugs", "a:16:{i:0;s:33:\"cmssuperheroes/cmssuperheroes.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:23:\"debug-bar/debug-bar.php\";i:3;s:25:\"duplicator/duplicator.php\";i:4;s:33:\"essential-grid/essential-grid.php\";i:5;s:49:\"export-featured-images/export-featured-images.php\";i:6;s:37:\"mailchimp-widget/mailchimp-widget.php\";i:7;s:31:\"menu-exporter/menu-exporter.php\";i:8;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:9;s:23:\"revslider/revslider.php\";i:10;s:17:\"sumome/sumome.php\";i:11;s:44:\"widget-settings-importexport/widget-data.php\";i:12;s:41:\"wordpress-importer/wordpress-importer.php\";i:13;s:27:\"js_composer/js_composer.php\";i:14;s:33:\"wp-user-avatar/wp-user-avatar.php\";i:15;s:21:\"zencache/zencache.php\";}", "no");
INSERT INTO `wp_options` VALUES("138844", "_site_transient_timeout_browser_6777022040190ec8fbcd24843cf4a4ea", "1464752870", "yes");
INSERT INTO `wp_options` VALUES("138845", "_site_transient_browser_6777022040190ec8fbcd24843cf4a4ea", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"46.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;}", "yes");
INSERT INTO `wp_options` VALUES("138428", "theme_mods_mdeal", "a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("138469", "finished_splitting_shared_terms", "0", "yes");
INSERT INTO `wp_options` VALUES("138470", "site_icon", "0", "yes");
INSERT INTO `wp_options` VALUES("138471", "medium_large_size_w", "768", "yes");
INSERT INTO `wp_options` VALUES("138472", "medium_large_size_h", "0", "yes");
INSERT INTO `wp_options` VALUES("138476", "can_compress_scripts", "0", "yes");
INSERT INTO `wp_options` VALUES("138784", "_transient_timeout_ess_grid_trans_query_1", "1460169380", "no");
INSERT INTO `wp_options` VALUES("138785", "_transient_ess_grid_trans_query_1", "O:8:\"WP_Query\":52:{s:5:\"query\";a:8:{s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:-1;s:9:\"showposts\";i:-1;s:11:\"post_status\";s:7:\"publish\";s:9:\"post_type\";s:14:\"essential_grid\";s:7:\"orderby\";s:8:\"post__in\";s:9:\"tax_query\";a:2:{i:0;a:3:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:5:{i:0;s:2:\"28\";i:1;s:2:\"29\";i:2;s:2:\"30\";i:3;s:2:\"31\";i:4;s:2:\"32\";}}s:8:\"relation\";s:2:\"OR\";}s:16:\"suppress_filters\";b:0;}s:10:\"query_vars\";a:69:{s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:-1;s:9:\"showposts\";i:-1;s:11:\"post_status\";s:7:\"publish\";s:9:\"post_type\";s:14:\"essential_grid\";s:7:\"orderby\";s:8:\"post__in\";s:9:\"tax_query\";a:2:{i:0;a:3:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:5:{i:0;s:2:\"28\";i:1;s:2:\"29\";i:2;s:2:\"30\";i:3;s:2:\"31\";i:4;s:2:\"32\";}}s:8:\"relation\";s:2:\"OR\";}s:16:\"suppress_filters\";b:0;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:6:\"static\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";s:0:\"\";s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:14:\"comments_popup\";s:0:\"\";s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:1;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:7:\"term_id\";s:2:\"28\";}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:2:{i:0;a:5:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"terms\";a:5:{i:0;s:2:\"28\";i:1;s:2:\"29\";i:2;s:2:\"30\";i:3;s:2:\"31\";i:4;s:2:\"32\";}s:5:\"field\";s:2:\"id\";s:8:\"operator\";s:2:\"IN\";s:16:\"include_children\";b:1;}s:8:\"relation\";s:2:\"OR\";}s:8:\"relation\";s:2:\"OR\";s:16:\"\0*\0table_aliases\";a:1:{i:0;s:21:\"wp_term_relationships\";}s:13:\"queried_terms\";a:1:{s:23:\"essential_grid_category\";a:2:{s:5:\"terms\";a:5:{i:0;s:2:\"28\";i:1;s:2:\"29\";i:2;s:2:\"30\";i:3;s:2:\"31\";i:4;s:2:\"32\";}s:5:\"field\";s:2:\"id\";}}s:13:\"primary_table\";s:8:\"wp_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:7:\"request\";s:336:\"SELECT   wp_posts.* FROM wp_posts  INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1  AND ( \n  wp_term_relationships.term_taxonomy_id IN (28,29,30,31,32)\n) AND wp_posts.post_type = \'essential_grid\' AND ((wp_posts.post_status = \'publish\')) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date ASC \";s:5:\"posts\";a:10:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1003;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:16\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:16\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:20:\"Coffee & Cookie Time\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"coffee-cookie-time\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:28\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:87:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/coffee-cookie-time/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1007;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:17\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:17\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:23:\"All you need right here\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:23:\"all-you-need-right-here\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:25\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:25\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:92:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/all-you-need-right-here/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1011;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:19:\"Sitting at the Cafe\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"sitting-at-the-cafe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:57\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:57\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:88:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/sitting-at-the-cafe/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1015;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:23:\"Let´s Read a Good Book\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"lets-read-a-good-book\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:01\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:01\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:90:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/lets-read-a-good-book/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1019;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:20:\"BOX – EXT. CONTENT\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"the-big-city-skyline\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:22\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:89:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-big-city-skyline/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1023;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:19\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:19\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:18:\"BUSINESS CARD BLUE\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:25:\"treat-yourself-with-salad\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:32\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:32\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:94:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/treat-yourself-with-salad/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1027;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:19\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:19\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:22:\"Typewriter taken apart\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:22:\"typewriter-taken-apart\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:53\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:53\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:91:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/typewriter-taken-apart/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1031;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:20\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:20\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:17:\"What a Cozy Place\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"what-a-cozy-place\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:29\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:29\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:86:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/what-a-cozy-place/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:8;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1047;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:22\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:22\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:29:\"The Mobile Revolution is Here\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:29:\"the-mobile-revolution-is-here\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:24\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-mobile-revolution-is-here/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:9;O:7:\"WP_Post\":24:{s:2:\"ID\";i:17741;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2016-01-13 01:57:10\";s:13:\"post_date_gmt\";s:19:\"2016-01-13 01:57:10\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:26:\"Cras consectetur tincidunt\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"cras-consectetur-tincidunt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-13 01:57:10\";s:17:\"post_modified_gmt\";s:19:\"2016-01-13 01:57:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:63:\"http://localhost/mdeal2/?post_type=essential_grid&#038;p=17741\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:10;s:12:\"current_post\";i:-1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:142;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:11:\"found_posts\";i:10;s:13:\"max_num_pages\";i:0;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:1;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:0;s:6:\"is_tax\";b:1;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:17:\"is_comments_popup\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:1;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"cbeb71f5af967cd970736677edd71eb6\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:23:\"updated_term_meta_cache\";b:0;s:26:\"updated_comment_meta_cache\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}", "no");
INSERT INTO `wp_options` VALUES("139445", "_transient_timeout_feed_mod_7fa907073bddbc2fc2b2bb18c9dfef16", "1475294682", "no");
INSERT INTO `wp_options` VALUES("139446", "_transient_feed_mod_7fa907073bddbc2fc2b2bb18c9dfef16", "1475251482", "no");
INSERT INTO `wp_options` VALUES("139443", "_transient_timeout_feed_7fa907073bddbc2fc2b2bb18c9dfef16", "1475294682", "no");
INSERT INTO `wp_options` VALUES("138830", "_site_transient_timeout_browser_d69aa478a72ecd3a99c77af6fcf6b917", "1464186204", "yes");
INSERT INTO `wp_options` VALUES("138831", "_site_transient_browser_d69aa478a72ecd3a99c77af6fcf6b917", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"50.0.2661.102\";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;}", "yes");
INSERT INTO `wp_options` VALUES("139437", "_transient_timeout_ess_grid_trans_query_34", "1475249206", "no");
INSERT INTO `wp_options` VALUES("139438", "_transient_ess_grid_trans_query_34", "O:8:\"WP_Query\":52:{s:5:\"query\";a:8:{s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:-1;s:9:\"showposts\";i:-1;s:11:\"post_status\";s:7:\"publish\";s:9:\"post_type\";s:14:\"essential_grid\";s:7:\"orderby\";s:8:\"post__in\";s:9:\"tax_query\";a:3:{i:0;a:3:{s:8:\"taxonomy\";s:8:\"post_tag\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}}i:1;a:3:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}}s:8:\"relation\";s:2:\"OR\";}s:16:\"suppress_filters\";b:0;}s:10:\"query_vars\";a:69:{s:5:\"order\";s:3:\"ASC\";s:14:\"posts_per_page\";i:-1;s:9:\"showposts\";i:-1;s:11:\"post_status\";s:7:\"publish\";s:9:\"post_type\";s:14:\"essential_grid\";s:7:\"orderby\";s:8:\"post__in\";s:9:\"tax_query\";a:3:{i:0;a:3:{s:8:\"taxonomy\";s:8:\"post_tag\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}}i:1;a:3:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"field\";s:2:\"id\";s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}}s:8:\"relation\";s:2:\"OR\";}s:16:\"suppress_filters\";b:0;s:5:\"error\";s:0:\"\";s:1:\"m\";s:0:\"\";s:1:\"p\";i:0;s:11:\"post_parent\";s:0:\"\";s:7:\"subpost\";s:0:\"\";s:10:\"subpost_id\";s:0:\"\";s:10:\"attachment\";s:0:\"\";s:13:\"attachment_id\";i:0;s:4:\"name\";s:0:\"\";s:6:\"static\";s:0:\"\";s:8:\"pagename\";s:0:\"\";s:7:\"page_id\";i:0;s:6:\"second\";s:0:\"\";s:6:\"minute\";s:0:\"\";s:4:\"hour\";s:0:\"\";s:3:\"day\";i:0;s:8:\"monthnum\";i:0;s:4:\"year\";i:0;s:1:\"w\";i:0;s:13:\"category_name\";s:0:\"\";s:3:\"tag\";s:0:\"\";s:3:\"cat\";s:0:\"\";s:6:\"tag_id\";i:37;s:6:\"author\";s:0:\"\";s:11:\"author_name\";s:0:\"\";s:4:\"feed\";s:0:\"\";s:2:\"tb\";s:0:\"\";s:5:\"paged\";i:0;s:14:\"comments_popup\";s:0:\"\";s:8:\"meta_key\";s:0:\"\";s:10:\"meta_value\";s:0:\"\";s:7:\"preview\";s:0:\"\";s:1:\"s\";s:0:\"\";s:8:\"sentence\";s:0:\"\";s:5:\"title\";s:0:\"\";s:6:\"fields\";s:0:\"\";s:10:\"menu_order\";s:0:\"\";s:12:\"category__in\";a:0:{}s:16:\"category__not_in\";a:0:{}s:13:\"category__and\";a:0:{}s:8:\"post__in\";a:0:{}s:12:\"post__not_in\";a:0:{}s:13:\"post_name__in\";a:0:{}s:7:\"tag__in\";a:0:{}s:11:\"tag__not_in\";a:0:{}s:8:\"tag__and\";a:0:{}s:12:\"tag_slug__in\";a:0:{}s:13:\"tag_slug__and\";a:0:{}s:15:\"post_parent__in\";a:0:{}s:19:\"post_parent__not_in\";a:0:{}s:10:\"author__in\";a:0:{}s:14:\"author__not_in\";a:0:{}s:19:\"ignore_sticky_posts\";b:0;s:13:\"cache_results\";b:1;s:22:\"update_post_term_cache\";b:1;s:22:\"update_post_meta_cache\";b:1;s:8:\"nopaging\";b:1;s:17:\"comments_per_page\";s:2:\"50\";s:13:\"no_found_rows\";b:0;s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:7:\"term_id\";s:2:\"37\";}s:9:\"tax_query\";O:12:\"WP_Tax_Query\":6:{s:7:\"queries\";a:3:{i:0;a:5:{s:8:\"taxonomy\";s:8:\"post_tag\";s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}s:5:\"field\";s:2:\"id\";s:8:\"operator\";s:2:\"IN\";s:16:\"include_children\";b:1;}i:1;a:5:{s:8:\"taxonomy\";s:23:\"essential_grid_category\";s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}s:5:\"field\";s:2:\"id\";s:8:\"operator\";s:2:\"IN\";s:16:\"include_children\";b:1;}s:8:\"relation\";s:2:\"OR\";}s:8:\"relation\";s:2:\"OR\";s:16:\"\0*\0table_aliases\";a:1:{i:0;s:21:\"wp_term_relationships\";}s:13:\"queried_terms\";a:2:{s:8:\"post_tag\";a:2:{s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}s:5:\"field\";s:2:\"id\";}s:23:\"essential_grid_category\";a:2:{s:5:\"terms\";a:7:{i:0;s:2:\"37\";i:1;s:2:\"36\";i:2;s:2:\"41\";i:3;s:2:\"28\";i:4;s:2:\"30\";i:5;s:2:\"31\";i:6;s:2:\"32\";}s:5:\"field\";s:2:\"id\";}}s:13:\"primary_table\";s:8:\"wp_posts\";s:17:\"primary_id_column\";s:2:\"ID\";}s:10:\"meta_query\";O:13:\"WP_Meta_Query\":9:{s:7:\"queries\";a:0:{}s:8:\"relation\";N;s:10:\"meta_table\";N;s:14:\"meta_id_column\";N;s:13:\"primary_table\";N;s:17:\"primary_id_column\";N;s:16:\"\0*\0table_aliases\";a:0:{}s:10:\"\0*\0clauses\";a:0:{}s:18:\"\0*\0has_or_relation\";b:0;}s:10:\"date_query\";b:0;s:7:\"request\";s:395:\"SELECT   wp_posts.* FROM wp_posts  INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1  AND ( \n  wp_term_relationships.term_taxonomy_id IN (36,37,41) \n  OR \n  wp_term_relationships.term_taxonomy_id IN (28,30,31,32)\n) AND wp_posts.post_type = \'essential_grid\' AND ((wp_posts.post_status = \'publish\')) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date ASC \";s:5:\"posts\";a:8:{i:0;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1003;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:16\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:16\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:20:\"Coffee & Cookie Time\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:18:\"coffee-cookie-time\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:28\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:28\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:87:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/coffee-cookie-time/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:1;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1011;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:19:\"Sitting at the Cafe\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:19:\"sitting-at-the-cafe\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:57\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:57\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:88:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/sitting-at-the-cafe/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:2;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1015;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:23:\"Let´s Read a Good Book\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:21:\"lets-read-a-good-book\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:01\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:01\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:90:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/lets-read-a-good-book/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:3;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1019;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:18\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:18\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:20:\"BOX – EXT. CONTENT\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:20:\"the-big-city-skyline\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:57:22\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:57:22\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:89:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-big-city-skyline/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:4;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1023;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:19\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:19\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:18:\"BUSINESS CARD BLUE\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:25:\"treat-yourself-with-salad\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:32\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:32\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:94:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/treat-yourself-with-salad/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:5;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1031;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:20\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:20\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:17:\"What a Cozy Place\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:17:\"what-a-cozy-place\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:29\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:29\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:86:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/what-a-cozy-place/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:6;O:7:\"WP_Post\":24:{s:2:\"ID\";i:1047;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2015-01-12 11:13:22\";s:13:\"post_date_gmt\";s:19:\"2015-01-12 11:13:22\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:29:\"The Mobile Revolution is Here\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:4:\"open\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:29:\"the-mobile-revolution-is-here\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-12 15:56:24\";s:17:\"post_modified_gmt\";s:19:\"2016-01-12 15:56:24\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:98:\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-mobile-revolution-is-here/\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}i:7;O:7:\"WP_Post\":24:{s:2:\"ID\";i:17741;s:11:\"post_author\";s:1:\"1\";s:9:\"post_date\";s:19:\"2016-01-13 01:57:10\";s:13:\"post_date_gmt\";s:19:\"2016-01-13 01:57:10\";s:12:\"post_content\";s:4473:\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\";s:10:\"post_title\";s:26:\"Cras consectetur tincidunt\";s:12:\"post_excerpt\";s:0:\"\";s:11:\"post_status\";s:7:\"publish\";s:14:\"comment_status\";s:4:\"open\";s:11:\"ping_status\";s:6:\"closed\";s:13:\"post_password\";s:0:\"\";s:9:\"post_name\";s:26:\"cras-consectetur-tincidunt\";s:7:\"to_ping\";s:0:\"\";s:6:\"pinged\";s:0:\"\";s:13:\"post_modified\";s:19:\"2016-01-13 01:57:10\";s:17:\"post_modified_gmt\";s:19:\"2016-01-13 01:57:10\";s:21:\"post_content_filtered\";s:0:\"\";s:11:\"post_parent\";i:0;s:4:\"guid\";s:62:\"http://localhost/mdeal2/?post_type=essential_grid&#038;p=17741\";s:10:\"menu_order\";i:0;s:9:\"post_type\";s:14:\"essential_grid\";s:14:\"post_mime_type\";s:0:\"\";s:13:\"comment_count\";s:1:\"0\";s:6:\"filter\";s:3:\"raw\";}}s:10:\"post_count\";i:8;s:12:\"current_post\";i:-1;s:11:\"in_the_loop\";b:0;s:4:\"post\";r:195;s:13:\"comment_count\";i:0;s:15:\"current_comment\";i:-1;s:11:\"found_posts\";i:8;s:13:\"max_num_pages\";i:0;s:21:\"max_num_comment_pages\";i:0;s:9:\"is_single\";b:0;s:10:\"is_preview\";b:0;s:7:\"is_page\";b:0;s:10:\"is_archive\";b:1;s:7:\"is_date\";b:0;s:7:\"is_year\";b:0;s:8:\"is_month\";b:0;s:6:\"is_day\";b:0;s:7:\"is_time\";b:0;s:9:\"is_author\";b:0;s:11:\"is_category\";b:0;s:6:\"is_tag\";b:1;s:6:\"is_tax\";b:1;s:9:\"is_search\";b:0;s:7:\"is_feed\";b:0;s:15:\"is_comment_feed\";b:0;s:12:\"is_trackback\";b:0;s:7:\"is_home\";b:0;s:6:\"is_404\";b:0;s:8:\"is_embed\";b:0;s:17:\"is_comments_popup\";b:0;s:8:\"is_paged\";b:0;s:8:\"is_admin\";b:0;s:13:\"is_attachment\";b:0;s:11:\"is_singular\";b:0;s:9:\"is_robots\";b:0;s:13:\"is_posts_page\";b:0;s:20:\"is_post_type_archive\";b:0;s:25:\"\0WP_Query\0query_vars_hash\";s:32:\"72a3e276c637205d13e9e90c2cd0987e\";s:28:\"\0WP_Query\0query_vars_changed\";b:0;s:17:\"thumbnails_cached\";b:0;s:23:\"updated_term_meta_cache\";b:0;s:26:\"updated_comment_meta_cache\";b:0;s:19:\"\0WP_Query\0stopwords\";N;s:23:\"\0WP_Query\0compat_fields\";a:2:{i:0;s:15:\"query_vars_hash\";i:1;s:18:\"query_vars_changed\";}s:24:\"\0WP_Query\0compat_methods\";a:2:{i:0;s:16:\"init_query_flags\";i:1;s:15:\"parse_tax_query\";}}", "no");
INSERT INTO `wp_options` VALUES("138617", "_site_transient_timeout_browser_9db1e73107cd717e7b5a1ffa9d8049e8", "1453735490", "yes");
INSERT INTO `wp_options` VALUES("138618", "_site_transient_browser_9db1e73107cd717e7b5a1ffa9d8049e8", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"43.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;}", "yes");
INSERT INTO `wp_options` VALUES("138650", "_site_transient_timeout_browser_e69998cd166d0a716e585b452d0a9806", "1453998611", "yes");
INSERT INTO `wp_options` VALUES("138651", "_site_transient_browser_e69998cd166d0a716e585b452d0a9806", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"47.0.2526.111\";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;}", "yes");
INSERT INTO `wp_options` VALUES("138673", "_site_transient_timeout_browser_98323ef302a5964522d6857f9be82573", "1454034786", "yes");
INSERT INTO `wp_options` VALUES("138674", "_site_transient_browser_98323ef302a5964522d6857f9be82573", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"47.0.2526.111\";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;}", "yes");
INSERT INTO `wp_options` VALUES("138891", "_site_transient_timeout_browser_97deb1ae03b93071724464acbc86cc87", "1466336529", "yes");
INSERT INTO `wp_options` VALUES("138762", "_site_transient_timeout_browser_10540a47081223ee03b0b4447e7dfacf", "1460687693", "yes");
INSERT INTO `wp_options` VALUES("138763", "_site_transient_browser_10540a47081223ee03b0b4447e7dfacf", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"49.0.2623.87\";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;}", "yes");
INSERT INTO `wp_options` VALUES("138913", "_site_transient_timeout_browser_90054ab1ae3e8d73696839775850dce4", "1466352943", "yes");
INSERT INTO `wp_options` VALUES("138914", "_site_transient_browser_90054ab1ae3e8d73696839775850dce4", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"50.0.2661.102\";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;}", "yes");
INSERT INTO `wp_options` VALUES("138876", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.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.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.6.1\";s:7:\"version\";s:5:\"4.6.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.4\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.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.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.6.1\";s:7:\"version\";s:5:\"4.6.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.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.5.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.5.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.5.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.5.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.5.4\";s:7:\"version\";s:5:\"4.5.4\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.4.5.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.4.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.4.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.4.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.4.5-partial-1.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.4.5-rollback-1.zip\";}s:7:\"current\";s:5:\"4.4.5\";s:7:\"version\";s:5:\"4.4.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.4\";s:15:\"partial_version\";s:5:\"4.4.1\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1475251474;s:15:\"version_checked\";s:5:\"4.4.1\";s:12:\"translations\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("138892", "_site_transient_browser_97deb1ae03b93071724464acbc86cc87", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"51.0.2704.84\";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;}", "yes");
INSERT INTO `wp_options` VALUES("139023", "_site_transient_timeout_browser_551db59e6025301116bdd9bdea784024", "1470750308", "yes");
INSERT INTO `wp_options` VALUES("139024", "_site_transient_browser_551db59e6025301116bdd9bdea784024", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"47.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;}", "yes");
INSERT INTO `wp_options` VALUES("139220", "_site_transient_timeout_browser_e1b306fa90ed47fe425c455b14ce2486", "1473996612", "yes");
INSERT INTO `wp_options` VALUES("139221", "_site_transient_browser_e1b306fa90ed47fe425c455b14ce2486", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"52.0.2743.116\";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;}", "yes");
INSERT INTO `wp_options` VALUES("139137", "duplicator_package_active", "O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20160930_mdealtheme\";s:4:\"Hash\";s:29:\"57ee95838c3b47072160930164035\";s:8:\"NameHash\";s:49:\"20160930_mdealtheme_57ee95838c3b47072160930164035\";s:7:\"Version\";s:6:\"0.5.28\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:39:\"E:/xampp/htdocs/mdeal2/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://localhost/mdeal2/wp-snapshots/\";s:8:\"ScanFile\";s:59:\"20160930_mdealtheme_57ee95838c3b47072160930164035_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:22:\"E:/xampp/htdocs/mdeal2\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":16:{s:2:\"ID\";N;s:4:\"Name\";s:19:\"20160930_mdealtheme\";s:4:\"Hash\";s:29:\"57ee95838c3b47072160930164035\";s:8:\"NameHash\";s:49:\"20160930_mdealtheme_57ee95838c3b47072160930164035\";s:7:\"Version\";s:6:\"0.5.28\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:39:\"E:/xampp/htdocs/mdeal2/wp-snapshots/tmp\";s:8:\"StoreURL\";s:37:\"http://localhost/mdeal2/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:7:\"Archive\";r:15;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:45;}s:8:\"Database\";O:12:\"DUP_Database\":11:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"\0*\0Package\";r:45;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:60;s:8:\"Database\";r:73;}", "yes");
INSERT INTO `wp_options` VALUES("139186", "_site_transient_timeout_browser_4c9717c179f154741a00df005d8e11d2", "1473770524", "yes");
INSERT INTO `wp_options` VALUES("139187", "_site_transient_browser_4c9717c179f154741a00df005d8e11d2", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"52.0.2743.116\";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;}", "yes");
INSERT INTO `wp_options` VALUES("139452", "_transient_feed_b9388c83948825c1edaef0d856b7b109", "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\";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:117:\"\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s:7:\"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:45:\"https://wordpress.org/plugins/browse/popular/\";s: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:34:\"WordPress Plugins » View: Popular\";s: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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Sep 2016 15:51: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\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:11:\"WP-PageNavi\";s:7:\"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/plugins/wp-pagenavi/#post-363\";s: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, 09 Mar 2007 23:17:57 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";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:49:\"Adds a more advanced paging navigation interface.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Lester Chan\";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:30:\"\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:\"Regenerate Thumbnails\";s:7:\"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/plugins/regenerate-thumbnails/#post-6743\";s: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, 23 Aug 2008 14:38:58 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"6743@http://wordpress.org/plugins/\";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:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s: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:25:\"Alex Mills (Viper007Bond)\";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:30:\"\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:22:\"Advanced Custom Fields\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s: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 Mar 2011 04:07: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";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:68:\"Customise WordPress with powerful, professional and intuitive fields\";s: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:\"elliotcondon\";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:30:\"\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:7:\"Akismet\";s:7:\"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:46:\"https://wordpress.org/plugins/akismet/#post-15\";s: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, 09 Mar 2007 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";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:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s: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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\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:26:\"Page Builder by SiteOrigin\";s:7:\"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:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2013 10:36:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"51888@http://wordpress.org/plugins/\";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:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Greg Priday\";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:30:\"\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:19:\"Google XML Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s: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, 09 Mar 2007 22:31: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";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:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Arne Brachhold\";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:30:\"\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:18:\"WordPress Importer\";s:7:\"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://wordpress.org/plugins/wordpress-importer/#post-18101\";s: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 May 2010 17:42: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";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:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s: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:\"Brian Colinger\";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:30:\"\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:16:\"TinyMCE Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s: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, 27 Jun 2007 15:00: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2082@http://wordpress.org/plugins/\";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:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s: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:\"Andrew Ozz\";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:30:\"\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:35:\"Google Analytics by MonsterInsights\";s:7:\"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/plugins/google-analytics-for-wordpress/#post-2316\";s: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 Sep 2007 12:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";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:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";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:30:\"\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:14:\"WP Super Cache\";s:7:\"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:55:\"https://wordpress.org/plugins/wp-super-cache/#post-2572\";s: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, 05 Nov 2007 11:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:16:\"Donncha O Caoimh\";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:30:\"\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:18:\"Wordfence 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s: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, 04 Sep 2011 03:13: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29832@http://wordpress.org/plugins/\";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:150:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scanner, blocking, live traffic, login security &#38; mor\";s: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:9:\"Wordfence\";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:30:\"\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:24:\"Jetpack by WordPress.com\";s:7:\"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://wordpress.org/plugins/jetpack/#post-23862\";s: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 Jan 2011 02:21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"23862@http://wordpress.org/plugins/\";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:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with Jetpack.\";s: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:\"Automattic\";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:30:\"\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:\"Really Simple CAPTCHA\";s:7:\"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/plugins/really-simple-captcha/#post-9542\";s: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, 09 Mar 2009 02:17: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"9542@http://wordpress.org/plugins/\";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:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s: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:16:\"Takayuki Miyoshi\";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:30:\"\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:19:\"All in One SEO Pack\";s:7:\"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:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s: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, 30 Mar 2007 20:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";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:150:\"The most downloaded plugin for WordPress (almost 30 million downloads). Use All in One SEO Pack to automatically optimize your site for Search Engines\";s: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:8:\"uberdose\";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:30:\"\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:11:\"Hello Dolly\";s:7:\"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:52:\"https://wordpress.org/plugins/hello-dolly/#post-5790\";s: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, 29 May 2008 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";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:150:\"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.\";s: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:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:30:\"\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:14:\"Contact Form 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s: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, 02 Aug 2007 12:45: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2141@http://wordpress.org/plugins/\";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:54:\"Just another contact form plugin. Simple but flexible.\";s: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:16:\"Takayuki Miyoshi\";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:30:\"\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:15:\"NextGEN Gallery\";s:7:\"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/plugins/nextgen-gallery/#post-1169\";s: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, 23 Apr 2007 20:08: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 15 million 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";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:30:\"\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:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s: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, 05 Sep 2011 08:13: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"29860@http://wordpress.org/plugins/\";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:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s: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:9:\"WooThemes\";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:30:\"\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:14:\"W3 Total Cache\";s:7:\"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/plugins/w3-total-cache/#post-12073\";s: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, 29 Jul 2009 18:46: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";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:132:\"Easy Web Performance Optimization (WPO) using caching: browser, page, object, database, minify and content delivery network support.\";s: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:16:\"Frederick Townes\";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:30:\"\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:14:\"Duplicate Post\";s:7:\"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:55:\"https://wordpress.org/plugins/duplicate-post/#post-2646\";s: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 Dec 2007 17:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2646@http://wordpress.org/plugins/\";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:22:\"Clone posts and pages.\";s: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:\"Lopo\";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:30:\"\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:9:\"Yoast SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s: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 Jan 2009 20:34: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"8321@http://wordpress.org/plugins/\";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:114:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using Yoast SEO plugin.\";s: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:\"Joost de Valk\";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:30:\"\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:30:\"Clef Two-Factor Authentication\";s:7:\"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:\"https://wordpress.org/plugins/wpclef/#post-47509\";s: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 Dec 2012 01:25:57 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"47509@http://wordpress.org/plugins/\";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:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Dave Ross\";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:30:\"\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:35:\"UpdraftPlus WordPress Backup Plugin\";s:7:\"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:53:\"https://wordpress.org/plugins/updraftplus/#post-38058\";s: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, 21 May 2012 15:14: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"38058@http://wordpress.org/plugins/\";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:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s: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:\"David Anderson\";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:30:\"\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:16:\"Disable Comments\";s:7:\"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://wordpress.org/plugins/disable-comments/#post-26907\";s: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, 27 May 2011 04:42:58 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26907@http://wordpress.org/plugins/\";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:134:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly.\";s: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:\"Samir Shah\";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:30:\"\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:33:\"Google Analytics Dashboard for WP\";s:7:\"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://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s: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, 10 Mar 2013 17:07: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"50539@http://wordpress.org/plugins/\";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:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s: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:\"Alin Marcu\";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:30:\"\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:18:\"WP Multibyte Patch\";s:7:\"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://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s: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, 14 Jul 2011 12:22: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"28395@http://wordpress.org/plugins/\";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:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s: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:\"plugin-master\";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:30:\"\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:27:\"Black Studio TinyMCE 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s: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 Nov 2011 15:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";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:39:\"The visual editor widget for 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";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:30:\"\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:10:\"Duplicator\";s:7:\"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:52:\"https://wordpress.org/plugins/duplicator/#post-26607\";s: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, 16 May 2011 12:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"26607@http://wordpress.org/plugins/\";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:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s: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:\"Cory Lamle\";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:30:\"\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:\"iThemes Security (formerly Better WP 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s: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, 22 Oct 2010 22:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";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:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s: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:\"iThemes\";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:30:\"\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:11:\"Meta Slider\";s:7:\"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/plugins/ml-slider/#post-49521\";s: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, 14 Feb 2013 16:56: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"49521@http://wordpress.org/plugins/\";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:131:\"Easy to use WordPress Slider plugin. Create responsive slideshows with Nivo Slider, Flex Slider, Coin Slider and Responsive Slides.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Matcha Labs\";s: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:46:\"https://wordpress.org/plugins/rss/view/popular\";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:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 30 Sep 2016 15:57:08 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Fri, 09 Mar 2007 23:17:57 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 250\";}s:5:\"build\";s:14:\"20160112052936\";}", "no");
INSERT INTO `wp_options` VALUES("139449", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1475294691", "no");
INSERT INTO `wp_options` VALUES("139450", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1475251491", "no");
INSERT INTO `wp_options` VALUES("139458", "_transient_dash_88ae138922fe95674369b1cb3d215a2b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/09/wordpress-4-6-1-security-and-maintenance-release/\'>WordPress 4.6.1 Security and Maintenance Release</a> <span class=\"rss-date\">September 7, 2016</span><div class=\"rssSummary\">WordPress 4.6.1 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.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher Cengiz Han Sahin; and a path traversal vulnerability in [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><p><strong>RSS Error</strong>: WP HTTP Error: Operation timed out after 10156 milliseconds with 185731 out of 485533 bytes received</p></div><div class=\"rss-widget\"><ul><li class=\'dashboard-news-plugin\'><span>Popular Plugin:</span> <a href=\'https://wordpress.org/plugins/ml-slider/\' class=\'dashboard-news-plugin-link\'>Meta Slider</a>&nbsp;<span>(<a href=\'plugin-install.php?tab=plugin-information&amp;plugin=ml-slider&amp;_wpnonce=41616910f5&amp;TB_iframe=true&amp;width=600&amp;height=800\' class=\'thickbox\' title=\'Meta Slider\'>Install</a>)</span></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("139447", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1475294691", "no");
INSERT INTO `wp_options` VALUES("139448", "_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:\"Wed, 07 Sep 2016 15:59: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: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.7-alpha-38677\";s:7:\"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: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.6.1 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:84:\"https://wordpress.org/news/2016/09/wordpress-4-6-1-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2016 15:52: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: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.6\";s:7:\"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=4507\";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:377:\"WordPress 4.6.1 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.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher Cengiz Han Sahin; and a path traversal vulnerability in [&#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:11:\"Jeremy Felt\";s: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:2757:\"<p>WordPress 4.6.1 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.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher <a href=\"https://twitter.com/cengizhansahin\">Cengiz Han Sahin</a>; and a path traversal vulnerability in the upgrade package uploader, reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> from the WordPress security team.</p>\n<p>Thank you to the reporters 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.6.1 fixes 15 bugs from 4.6. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.6.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.6.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.6.1</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.6.1.</p>\n<p>Thanks to everyone who contributed to 4.6.1:</p>\n<p><a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</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/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geminorum\">geminorum</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J. (Clorith)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</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:\"4507\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s: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 4.6 “Pepper”\";s:7:\"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://wordpress.org/news/2016/08/pepper/\";s: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 Aug 2016 19:06: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:8:\"category\";a:2:{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:3:\"4.6\";s:7:\"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=4444\";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:276:\"Version 4.6 of WordPress, named “Pepper” in honor of jazz baritone saxophonist Park Frederick “Pepper” Adams III, is available for download or update in your WordPress dashboard. New features in 4.6 help you to focus on the important things while feeling more at home.\";s: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:27:\"Dominik Schilling (ocean90)\";s: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:27139:\"<p>Version 4.6 of WordPress, named “Pepper” in honor of jazz baritone saxophonist Park Frederick “Pepper” Adams III, is available for download or update in your WordPress dashboard. New features in 4.6 help you to focus on the important things while feeling more at home.</p>\n<p><iframe width=\'632\' height=\'354\' src=\'https://videopress.com/embed/GbdhpGF3?hd=1\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script></p>\n<hr />\n<h2 style=\"text-align: center\">Streamlined Updates</h2>\n<p><img class=\"aligncenter wp-image-4454 size-large\" src=\"https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=1024%2C614&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=300%2C180&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?resize=768%2C461&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2016/08/streamlined-updates.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Don’t lose your place: stay on the same page while you update, install, and delete your plugins and themes.</p>\n<hr />\n<h2 style=\"text-align: center\">Native Fonts</h2>\n<p><img class=\"aligncenter wp-image-4455 size-large\" src=\"https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=1024%2C614&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=300%2C180&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?resize=768%2C461&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/08/native-fonts.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>The WordPress dashboard now takes advantage of the fonts you already have, making it load faster and letting you feel more at home on whatever device you use.</p>\n<hr />\n<h2 style=\"text-align: center\">Editor Improvements</h2>\n<div style=\"float: left;width: 48%;margin: 0\">\n<h3>Inline Link Checker</h3>\n<p><img class=\"aligncenter wp-image-4456 size-full\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?w=992&amp;ssl=1 992w, https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=300%2C180&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/08/inline-link-checker.png?resize=768%2C461&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>Ever accidentally made a link to https://wordpress.org/example.org? Now WordPress automatically checks to make sure you didn’t.</p>\n</div>\n<div style=\"float: right;width: 48%;margin: 0\">\n<h3>Content Recovery</h3>\n<p><img class=\"aligncenter wp-image-4457 size-full\" src=\"https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=632%2C379&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?w=992&amp;ssl=1 992w, https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=300%2C180&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/08/content-recovery.png?resize=768%2C461&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></p>\n<p>As you type, WordPress saves your content to the browser. Recovering saved content is even easier with WordPress 4.6.</p>\n</div>\n<hr style=\"clear: both\" />\n<h2 style=\"text-align: center\">Under The Hood</h2>\n<h3>Resource Hints</h3>\n<p><a href=\"https://make.wordpress.org/core/2016/07/06/resource-hints-in-4-6/\">Resource hints help browsers</a> decide which resources to fetch and preprocess. WordPress 4.6 adds them automatically for your styles and scripts making your site even faster.</p>\n<h3>Robust Requests</h3>\n<p>The HTTP API now leverages the Requests library, improving HTTP standard support and adding case-insensitive headers, parallel HTTP requests, and support for Internationalized Domain Names.</p>\n<h3><code>WP_Term_Query</code> and <code>WP_Post_Type</code></h3>\n<p>A new <code><a href=\"https://developer.wordpress.org/reference/classes/wp_term_query\">WP_Term_Query</a></code> class adds flexibility to query term information while a new <code><a href=\"https://developer.wordpress.org/reference/classes/wp_post_type\">WP_Post_Type</a></code> object makes interacting with post types more predictable.</p>\n<h3>Meta Registration API</h3>\n<p>The Meta Registration API <a href=\"https://make.wordpress.org/core/2016/07/08/enhancing-register_meta-in-4-6/\">has been expanded</a> to support types, descriptions, and REST API visibility.</p>\n<h3>Translations On Demand</h3>\n<p>WordPress will install and use the newest language packs for your plugins and themes as soon as they’re available from <a href=\"https://translate.wordpress.org/\">WordPress.org’s community of translators</a>.</p>\n<h3>JavaScript Library Updates</h3>\n<p>Masonry 3.3.2, imagesLoaded 3.2.0, MediaElement.js 2.22.0, TinyMCE 4.4.1, and Backbone.js 1.3.3 are bundled.</p>\n<h3>Customizer APIs for Setting Validation and Notifications</h3>\n<p>Settings now have an <a href=\"https://make.wordpress.org/core/2016/07/05/customizer-apis-in-4-6-for-setting-validation-and-notifications/\">API for enforcing validation constraints</a>. Likewise, customizer controls now support notifications, which are used to display validation errors instead of failing silently.</p>\n<h3>Multisite, now faster than ever</h3>\n<p>Cached and comprehensive site queries improve your network admin experience. The addition of <code><a href=\"https://developer.wordpress.org/reference/classes/wp_site_query\">WP_Site_Query</a></code> and <code><a href=\"https://developer.wordpress.org/reference/classes/wp_network_query\">WP_Network_Query</a></code> help craft advanced queries with less effort.</p>\n<hr />\n<h2 style=\"text-align: center\">The Crew</h2>\n<p>This release was led by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a>, backed up by <a href=\"https://www.garthmortensen.com/\">Garth Mortensen</a> as Release Deputy, and with the help of these fine individuals. There are <span style=\"font-weight: 400\">272</span> contributors with props in this release. Pull up some Pepper Adams on your music service of choice, and check out some of their profiles:</p>\n<a href=\"https://profiles.wordpress.org/a5hleyrich\">A5hleyRich</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamsoucie\">Adam Soucie</a>, <a href=\"https://profiles.wordpress.org/adrianosilvaferreira\">Adriano Ferreira</a>, <a href=\"https://profiles.wordpress.org/afineman\">afineman</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/aidvu\">aidvu</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Bj&#246;rklund</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/alexkingorg\">Alex King</a>, <a href=\"https://profiles.wordpress.org/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"https://profiles.wordpress.org/alexvandervegt\">alexvandervegt</a>, <a href=\"https://profiles.wordpress.org/ambrosey\">Alice Brosey</a>, <a href=\"https://profiles.wordpress.org/aaires\">Ana Aires</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andg\">Andrea Gandino</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/rockwell15\">Andrew Rockwell</a>, <a href=\"https://profiles.wordpress.org/afragen\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</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/anneschmidt\">anneschmidt</a>, <a href=\"https://profiles.wordpress.org/zuige\">Antti Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/barryceelen\">Barry Ceelen</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</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/bradt\">Brad Touesnard</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianvan\">brianvan</a>, <a href=\"https://profiles.wordpress.org/borgesbruno\">Bruno Borges</a>, <a href=\"https://profiles.wordpress.org/bpetty\">Bryan Petty</a>, <a href=\"https://profiles.wordpress.org/purcebr\">Bryan Purcell</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/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff (chriscct7)</a>, <a href=\"https://profiles.wordpress.org/chris_dev\">Chris Mok</a>, <a href=\"https://profiles.wordpress.org/c3mdigital\">Chris Olbekson</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/cfinke\">Christopher Finke</a>, <a href=\"https://profiles.wordpress.org/cliffseal\">Cliff Seal</a>, <a href=\"https://profiles.wordpress.org/clubduece\">clubduece</a>, <a href=\"https://profiles.wordpress.org/cmillerdev\">cmillerdev</a>, <a href=\"https://profiles.wordpress.org/craig-ralston\">Craig Ralston</a>, <a href=\"https://profiles.wordpress.org/crstauf\">crstauf</a>, <a href=\"https://profiles.wordpress.org/dabnpits\">dabnpits</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danielhuesken\">Daniel H&#252;sken</a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dashaluna\">dashaluna</a>, <a href=\"https://profiles.wordpress.org/davewarfel\">davewarfel</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/davidanderson\">David Anderson</a>, <a href=\"https://profiles.wordpress.org/dbrumbaugh10up\">David Brumbaugh</a>, <a href=\"https://profiles.wordpress.org/dcavins\">David Cavins</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</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/realloc\">Dennis Ploetner</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/downstairsdev\">Devin Price</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elrae\">elrae</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/ethitter\">Erick Hitter</a>, <a href=\"https://profiles.wordpress.org/fab1en\">Fabien Quatravaux</a>, <a href=\"https://profiles.wordpress.org/faison\">Faison</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/flyingdr\">flyingdr</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/francescobagnoli\">francescobagnoli</a>, <a href=\"https://profiles.wordpress.org/bueltge\">Frank Bueltge</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/efarem\">Frank Martin</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/mintindeed\">Gabriel Koen</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/gblsm\">gblsm</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/geminorum\">geminorum</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</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/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/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/inderpreet99\">Inderpreet Singh</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/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/macmanx\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/underdude\">Janne Ala-&#196;ij&#228;l&#228;</a>, <a href=\"https://profiles.wordpress.org/jaspermdegroot\">Jasper de Groot</a>, <a href=\"https://profiles.wordpress.org/javorszky\">javorszky</a>, <a href=\"https://profiles.wordpress.org/jfarthing84\">Jeff Farthing</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/endocreative\">Jeremy Green</a>, <a href=\"https://profiles.wordpress.org/jeherve\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jmichaelward\">Jeremy Ward</a>, <a href=\"https://profiles.wordpress.org/jerrysarcastic\">Jerry Bates (jerrysarcastic)</a>, <a href=\"https://profiles.wordpress.org/jesin\">Jesin A</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</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/joelwills\">Joel Williams</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">John P. Green</a>, <a href=\"https://profiles.wordpress.org/john_schlick\">John_Schlick</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/josephscott\">Joseph Scott</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshuagoodwin\">Joshua Goodwin</a>, <a href=\"https://profiles.wordpress.org/jpdavoutian\">jpdavoutian</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jsternberg\">jsternberg</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/julesaus\">julesaus</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</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/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</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/kurtpayne\">Kurt Payne</a>, <a href=\"https://profiles.wordpress.org/offereins\">Laurens Offereins</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/latz\">Lutz Schr&#246;er</a>, <a href=\"https://profiles.wordpress.org/mpol\">Marcel Pol</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J. (Clorith)</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/martinkrcho\">martin.krcho</a>, <a href=\"https://profiles.wordpress.org/mattmiklic\">Matt Miklic</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/borkweb\">Matthew Batchelder</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/wzislam\">Mayeenul Islam</a>, <a href=\"https://profiles.wordpress.org/mdwheele\">mdwheele</a>, <a href=\"https://profiles.wordpress.org/medariox\">medariox</a>, <a href=\"https://profiles.wordpress.org/mehulkaklotar\">Mehul Kaklotar</a>, <a href=\"https://profiles.wordpress.org/meitar\">Meitar</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/roseapplemedia\">Michael</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/michaelbeil\">Michael Beil</a>, <a href=\"https://profiles.wordpress.org/stuporglue\">Michael Moore</a>, <a href=\"https://profiles.wordpress.org/mbijon\">Mike Bijon</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/m_uysl\">Mustafa Uysal</a>, <a href=\"https://profiles.wordpress.org/nicholas_io\">N&#237;cholas Andr&#233;</a>, <a href=\"https://profiles.wordpress.org/nextendweb\">Nextendweb</a>, <a href=\"https://profiles.wordpress.org/niallkennedy\">Niall Kennedy</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/ninos-ego\">Ninos</a>, <a href=\"https://profiles.wordpress.org/alleynoah\">Noah</a>, <a href=\"https://profiles.wordpress.org/noahsilverstein\">noahsilverstein</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/ojrask\">ojrask</a>, <a href=\"https://profiles.wordpress.org/olarmarius\">Olar Marius</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/pansotdev\">pansotdev</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/bassgang\">Paul Vincent Beigang</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pavelevap\">pavelevap</a>, <a href=\"https://profiles.wordpress.org/pcarvalho\">pcarvalho</a>, <a href=\"https://profiles.wordpress.org/westi\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/peterrknight\">PeterRKnight</a>, <a href=\"https://profiles.wordpress.org/walbo\">Petter Walb&#248; Johnsg&#229;rd</a>, <a href=\"https://profiles.wordpress.org/petya\">Petya Raykovska</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter</a>, <a href=\"https://profiles.wordpress.org/pollett\">Pollett</a>, <a href=\"https://profiles.wordpress.org/postpostmodern\">postpostmodern</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/prettyboymp\">prettyboymp</a>, <a href=\"https://profiles.wordpress.org/r-a-y\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rafaelangeline\">rafaelangeline</a>, <a href=\"https://profiles.wordpress.org/zetaraffix\">raffaella isidori</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</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/littlerchicken\">Robin Cornett</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/ronalfy\">Ronald Huereca</a>, <a href=\"https://profiles.wordpress.org/ruudjoyo\">Ruud Laan</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/samantha-miller\">Samantha Miller</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/rosso99\">Sara Rosso</a>, <a href=\"https://profiles.wordpress.org/schlessera\">schlessera</a>, <a href=\"https://profiles.wordpress.org/scottbasgaard\">Scott Basgaard</a>, <a href=\"https://profiles.wordpress.org/sc0ttkclark\">Scott Kingsley Clark</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/screamingdev\">screamingdev</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/semil\">semil</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/shahpranaf\">shahpranaf</a>, <a href=\"https://profiles.wordpress.org/sidati\">Sidati</a>, <a href=\"https://profiles.wordpress.org/neverything\">Silvan Hagen</a>, <a href=\"https://profiles.wordpress.org/simonvik\">Simon Vikstr&#246;m</a>, <a href=\"https://profiles.wordpress.org/sirjonathan\">sirjonathan</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/soean\">Soeren Wrede</a>, <a href=\"https://profiles.wordpress.org/southp\">southp</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/stephdau\">Stephane Daury (stephdau)</a>, <a href=\"https://profiles.wordpress.org/coderste\">Stephen</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/stubgo\">stubgo</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/tacoverdo\">Taco Verdonschot</a>, <a href=\"https://profiles.wordpress.org/iamtakashi\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/themiked\">theMikeD</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/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tloureiro\">tloureiro</a>, <a href=\"https://profiles.wordpress.org/travisnorthcutt\">Travis Northcutt</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/unyson\">Unyson</a>, <a href=\"https://profiles.wordpress.org/szepeviktor\">Viktor Sz&#233;pe</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/svovaf\">vovafeldman</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/wp_smith\">wp_smith</a>, <a href=\"https://profiles.wordpress.org/wpfo\">wpfo</a>, <a href=\"https://profiles.wordpress.org/xavivars\">Xavi Ivars</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, and <a href=\"https://profiles.wordpress.org/zakb8\">zakb8</a>.\n<p>&nbsp;</p>\n<p>Special thanks go to <a href=\"https://jerrysarcastic.com/\">Jerry Bates</a> for producing the release video and <a href=\"http://hugobaeta.com/\">Hugo Baeta</a> for providing marketing graphics.</p>\n<p>Finally, thanks to all the community translators who worked on WordPress 4.6. Their efforts make it possible to use WordPress 4.6 in 52 languages. The WordPress 4.6 release video has been captioned into 43 languages.</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. See you soon for version 4.7!</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:\"4444\";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: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:17:\"WordPress 4.6 RC2\";s:7:\"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:53:\"https://wordpress.org/news/2016/08/wordpress-4-6-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Aug 2016 00:31: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"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=4427\";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:341:\"The second release candidate for WordPress 4.6 is now available. We’ve made over 30 changes since the first release candidate. 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.6 on Tuesday, August 16, but we need [&#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:27:\"Dominik Schilling (ocean90)\";s: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:3442:\"<p>The second release candidate for WordPress 4.6 is now available.</p>\n<p>We’ve made over <a href=\"https://core.trac.wordpress.org/log/branches/4.6/src?action=stop_on_copy&amp;mode=follow_copy&amp;rev=38246&amp;stop_rev=38170&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">30 changes</a> since the first release candidate. 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.6 on <strong>Tuesday, August 16</strong>, but we need <em>your</em> help to get there.</p>\n<p>If you haven’t tested 4.6 yet, now is the time!</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>To test WordPress 4.6, 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.6-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\">Beta 4</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-release-candidate/\">RC 1</a> blog posts.</p>\n<p>A few changes of note since the first release candidate:</p>\n<ul>\n<li>Support for custom HTTP methods and proxy authentication has been restored.</li>\n<li>Various fixes for the streamlined updates, including better failure messages and error handling, basic back-compat styling for custom update notifications, and additional and standardized JavaScript events.</li>\n<li>Unnecessary reference parameters have been removed from new multisite functions.</li>\n<li>A compatibility issue with PHP 7.0.9 (and PHP 7.1) has been fixed.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.6 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.6. 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 never want to break things.</p>\n<p>Be sure to read the <a href=\"https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/\">in-depth field guide</a>, a post with all the developer-focused changes that take place under the hood.</p>\n<p><strong>Translators</strong>, strings are now frozen, including the About Page, so you are clear to translate! <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p>Happy testing!</p>\n<p><em>The verdict is in,</em><br />\n<em>Can I haz all the features,</em><br />\n<em>Your best WordPress yet.</em></p>\n<p><img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3f3.png\" alt=\"🏳\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />️‍<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f308.png\" alt=\"🌈\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></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:\"4427\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s: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.6 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/2016/07/wordpress-4-6-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:\"Wed, 27 Jul 2016 19:14: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"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=4416\";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:337:\"The release candidate for WordPress 4.6 is now available. We’ve made a few refinements since releasing Beta 4 a week ago. 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.6 on Tuesday, August 16, but we need [&#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:27:\"Dominik Schilling (ocean90)\";s: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:2428:\"<p>The release candidate for WordPress 4.6 is now available.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=38169&amp;stop_rev=38124&amp;limit=200&amp;verbose=on\">a few refinements</a> since releasing Beta 4 a week ago. 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.6 on <strong>Tuesday, August 16</strong>, but we need <em>your</em> help to get there.</p>\n<p>If you haven’t tested 4.6 yet, now is the time!</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>To test WordPress 4.6, 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.6-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>For more information about what’s new in version 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.6 and update your plugin&#8217;s <em>Tested up to</em> version in the readme to 4.6. 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 never want to break things.</p>\n<p>Be sure to read the <a href=\"https://make.wordpress.org/core/2016/07/26/wordpress-4-6-field-guide/\">in-depth field guide</a>, a post with all the developer-focused changes that take place under the hood.</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>Happy testing!</p>\n<p><em>Der Sommer ist da,</em><br />\n<em>Zeit für ein neues Release.</em><br />\n<em>Bald ist es soweit.</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:\"4416\";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: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:20:\"WordPress 4.6 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 20 Jul 2016 18:49: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"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=4396\";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.6 Beta 4 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:4309:\"<p>WordPress 4.6 Beta 4 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.6, 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.6-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-6+dev-notes/\">in-depth field guides</a>. This is the final <a href=\"https://make.wordpress.org/core/version-4-6-project-schedule/\">planned beta</a> of WordPress 4.6, with a release candidate scheduled for next week.</p>\n<p>Some of the fixes in Beta 4 include:</p>\n<ul>\n<li><strong>Media</strong>: <code>alt</code> attributes are now always added to images inserted from URLs (<a href=\"https://core.trac.wordpress.org/ticket/36735\">#36735</a>).</li>\n<li>Object subtype handling has been removed from <code>register_meta()</code>. Details about this change are explained in <a href=\"https://make.wordpress.org/core/2016/07/20/additional-register_meta-changes-in-4-6/\">a post for developers</a>.</li>\n<li><strong>Resource hints</strong> are now limited to enqueued assets (<a href=\"https://core.trac.wordpress.org/ticket/37385\">#37385</a>).</li>\n<li>A regression with query alterations introduced by the new <code>WP_Term_Query</code> has been fixed (<a href=\"https://core.trac.wordpress.org/ticket/37378\">#37378</a>).</li>\n<li>The Ajax searches for <strong>installed and new plugins</strong> have been enhanced to fix several accessibility issues and to improve compatibility with older browsers. (<a href=\"https://core.trac.wordpress.org/ticket/37233\">#37233</a>, <a href=\"https://core.trac.wordpress.org/ticket/37373\">#37373</a>)</li>\n<li>The media player <strong>MediaElement.js</strong> has been updated to 2.22.0 to fix YouTube video embeds (<a href=\"https://core.trac.wordpress.org/ticket/37363\">#37363</a>).</li>\n<li>The <strong>Import screen</strong> was overhauled, improving accessibility and making it much easier to install and run an importer (<a href=\"https://core.trac.wordpress.org/ticket/35191\">#35191</a>).</li>\n<li><strong>Emoji support</strong> has been updated to include all of the latest Unicode 9 emoji characters (<a href=\"https://core.trac.wordpress.org/ticket/37361\">#37361</a>). 🤠🥕🥓<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f57a.png\" alt=\"🕺\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3fd.png\" alt=\"🏽\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />🤝<img src=\"https://s.w.org/images/core/emoji/2/72x72/1f3ff.png\" alt=\"🏿\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=38123&amp;stop_rev=38060&amp;limit=200&amp;verbose=on\">more than 60 changes</a> during the last week.</li>\n</ul>\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>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>This is Beta 4,</em><br />\n<em>The last before RC 1.</em><br />\n<em>Please test all the things.</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:\"4396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s: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.6 Beta 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 13 Jul 2016 19:00:08 +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:11:\"Development\";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:\"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:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"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=4386\";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.6 Beta 3 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:3169:\"<p>WordPress 4.6 Beta 3 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.6, 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.6-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.6, check out the <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/07/wordpress-4-6-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-6+dev-notes/\">in-depth field guides on make/core</a>. Some of the fixes in Beta 3 include:</p>\n<ul>\n<li><strong>Revisions:</strong> Autosaves can now be restored when revisions are disabled (<a href=\"https://core.trac.wordpress.org/ticket/36262\">#36262</a>).</li>\n<li>An improved <strong>handling of PHP&#8217;s memory limit</strong> which doesn&#8217;t lower the limit anymore (<a href=\"https://core.trac.wordpress.org/ticket/32075\">#</a><a class=\"closed ticket\" title=\"defect (bug): Only set WP_MAX_MEMORY_LIMIT by default when its greater than memory_limit (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/32075\">32075</a>).</li>\n<li><strong>TinyMCE</strong> has been updated to 4.4.0 (<a href=\"https://core.trac.wordpress.org/ticket/32075\">#</a><a class=\"closed ticket\" title=\"defect (bug): TinyMCE 4.4.0 (closed: fixed)\" href=\"https://core.trac.wordpress.org/ticket/37327\">37327</a>).</li>\n<li><strong>HTTP API:</strong> Proxy settings weren&#8217;t honored by the new HTTP library. This has been fixed (<a href=\"https://core.trac.wordpress.org/ticket/37107\">#37107</a>).</li>\n<li>Improved handling of <strong>UTF-8 address headers for emails </strong>(<a href=\"https://core.trac.wordpress.org/ticket/21659\">#21659</a>).</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=38059&amp;stop_rev=37992&amp;limit=200&amp;verbose=on\">more than 65 changes</a> during the last week.</li>\n</ul>\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>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>Beta 3 is here,</em><br />\n<em>The more testing, the better.</em><br />\n<em>Gotta catch ‘em all!</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:\"4386\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s: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.6 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/2016/07/wordpress-4-6-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:\"Wed, 06 Jul 2016 18:43: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:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"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=4371\";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.6 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:2803:\"<p>WordPress 4.6 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.6, 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.6-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.6 Beta 1:</p>\n<ul>\n<li><strong>Meta:</strong> The fallback authentication for the previous registration method has been restored. Also, retrieving registered metadata now works and non-core object types are no longer forcibly blocked. See <a href=\"https://core.trac.wordpress.org/ticket/35658\">#35658</a>.</li>\n<li><strong>REST API:</strong> The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. Previously, the sanitization callback ran before the validation callback. See <a href=\"https://core.trac.wordpress.org/ticket/37192\">#37192</a>.</li>\n<li><strong>Customize:</strong> The order of setting sanitization and validation has been reversed; validation now occurs prior to sanitization. See <a href=\"https://core.trac.wordpress.org/ticket/37247\">#37247</a>.</li>\n<li><strong>HTTP API:</strong> <code>WP_Http::request()</code> returns an array again. See <a href=\"https://core.trac.wordpress.org/ticket/37097\">#37097</a>.</li>\n<li><strong>Various bug fixes</strong>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=37992&amp;stop_rev=37925&amp;limit=200&amp;verbose=on\">just over 50 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.6, <a href=\"https://wordpress.org/news/2016/06/wordpress-4-6-beta-1/\">check out the Beta 1 blog post</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>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you’re comfortable writing a bug report, <a href=\"https://core.trac.wordpress.org/\">file one on the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a> and <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;group=component&amp;milestone=4.6\">everything we’ve fixed</a>.</p>\n<p>Happy testing!</p>\n<p><em>Teenage Beta 2</em><br />\n<em>Thirteen years of pressing words</em><br />\n<em>Rejoice with testing!</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:\"4371\";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:20:\"WordPress 4.6 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/2016/06/wordpress-4-6-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:\"Thu, 30 Jun 2016 01:22: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:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";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:\"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:2;a:5:{s:4:\"data\";s:3:\"4.6\";s:7:\"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=4343\";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.6 Beta 1 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.6, 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:27:\"Dominik Schilling (ocean90)\";s: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:5954:\"<p>WordPress 4.6 Beta 1 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.6, 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.6-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.6 is slated for release on <a href=\"https://make.wordpress.org/core/version-4-6-project-schedule/\">August 16</a>, but to get there, we need your help testing what we have been working on, including:</p>\n<ul>\n<li><strong>Shiny Updates v2</strong> (<a href=\"https://core.trac.wordpress.org/changeset/37714\">[37714]</a>) &#8211; <a href=\"https://make.wordpress.org/core/features/shiny-updates/\">Shiny Updates</a> replaces progress updates with a simpler and more straight forward experience when installing, updating, and deleting plugins and themes.</li>\n<li><strong>Native Fonts in the Admin</strong> (<a href=\"https://core.trac.wordpress.org/ticket/36753\">#36753</a>) &#8211; Experience faster load times, especially when working offline, a removal of a third-party dependency, and a more <a href=\"https://make.wordpress.org/core/features/font-natively/\">native-feeling experience</a> as the lines between the mobile web and native applications continue to blur.</li>\n<li><strong>Editor Improvements</strong> &#8211; A more reliable recovery mode (<a href=\"https://core.trac.wordpress.org/ticket/37025\">#37025</a>) and detection of broken URLs while you type them (<a href=\"https://core.trac.wordpress.org/ticket/36638\">#36638</a>).</li>\n</ul>\n<p>There have been changes for developers to explore as well:</p>\n<ul>\n<li><strong>Resource Hints</strong> (<a href=\"https://core.trac.wordpress.org/ticket/34292\">#34292</a>) &#8211; Allow browsers to prefetch specific pages, render them in the background, perform DNS lookups, or to begin the connection handshake (DNS, TCP, TLS) in the background.</li>\n<li>New <code>WP_Site_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/35791\">#35791</a>) and <code>WP_Network_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/32504\">#32504</a>) classes to query sites and networks with lazy loading for details.</li>\n<li><strong>Requests</strong> (<a href=\"https://core.trac.wordpress.org/ticket/33055\">#33055</a>) &#8211; A new PHP library for HTTP requests that supports parallel requests and more.</li>\n<li><code>WP_Term_Query</code> (<a href=\"https://core.trac.wordpress.org/ticket/35381\">#35381</a>) is modeled on existing query classes and provides a more consistent structure for generating term queries.</li>\n<li><strong>Language Packs</strong> (<a href=\"https://core.trac.wordpress.org/ticket/34114\">#34114</a>, <a href=\"https://core.trac.wordpress.org/ticket/34213\">#34213</a>) &#8211; Translations managed through <a href=\"https://translate.wordpress.org\">translate.wordpress.org</a> now have a higher priority and are loaded just-in-time.</li>\n<li><code>WP_Post_Type</code> (<a href=\"https://core.trac.wordpress.org/ticket/36217\">#36217</a>) provides easier access to post type objects and their underlying properties.</li>\n<li>The <strong>Widgets API</strong> (<a href=\"https://core.trac.wordpress.org/ticket/28216\">#28216</a>) was enhanced to support registering pre-instantiated widgets.</li>\n<li>Index definitions are now normalized by <code>dbDelta()</code> (<a href=\"https://core.trac.wordpress.org/changeset/37583\">[37583]</a>).</li>\n<li><strong>Comments</strong> can now be stored in a persistent object cache (<a href=\"https://core.trac.wordpress.org/ticket/36906\">#36906</a>).</li>\n<li><strong>External Libraries</strong> were updated to the latest versions &#8211; Masonry to 3.3.2 and imagesLoaded to 3.2.0 (<a href=\"https://core.trac.wordpress.org/ticket/32802\">#32802</a>), MediaElement.js to 2.21.2 (<a href=\"https://core.trac.wordpress.org/ticket/36759\">#36759</a>), and TinyMCE to 4.3.13 (<a href=\"https://core.trac.wordpress.org/ticket/37225\">#37225</a>).</li>\n<li><strong>REST API</strong> responses now include an auto-discovery header (<a href=\"https://core.trac.wordpress.org/ticket/35580\">#35580</a>) and a refreshed nonce when responding to an authenticated response (<a href=\"https://core.trac.wordpress.org/ticket/35662\">#35662</a>).</li>\n<li>Expanded <strong>Meta Registration API</strong> via <code>register_meta()</code> (<a href=\"https://core.trac.wordpress.org/ticket/35658\">#35658</a>).</li>\n<li><strong>Customizer</strong> &#8211; Improved API for <a href=\"https://make.wordpress.org/core/2016/05/04/improving-setting-validation-in-the-customizer/\">setting validation</a> (<a href=\"https://core.trac.wordpress.org/ticket/34893\">#34893</a>, <a href=\"https://core.trac.wordpress.org/ticket/36944\">#36944</a>).</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.6, <a href=\"https://make.wordpress.org/core/tag/4-6/\">check out posts tagged with 4.6 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.6&amp;group=component&amp;order=priority\">list of everything</a> that’s changed.</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 the WordPress Trac</a>. There, you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs.</a></p>\n<p>Happy testing!</p>\n<p><em>More Shiny Updates</em><br />\n<em>In 4.6 Beta 1.</em><br />\n<em>And Font Natively.</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:\"4343\";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: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.5.3 Maintenance and 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2016/06/wordpress-4-5-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jun 2016 09:38:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4311\";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:460:\"WordPress 4.5.3 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.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by Yassine Aboukir; two different XSS problems via attachment names, reported by Jouko Pynnönen and Divyesh Prajapati; revision history information disclosure, reported [&#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:16:\"Adam Silverstein\";s: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:3571:\"<p>WordPress 4.5.3 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.5.2 and earlier are affected by several security issues: redirect bypass in the customizer, reported by <a href=\"http://yassineaboukir.com\">Yassine Aboukir</a>; two different XSS problems via attachment names, reported by <a href=\"https://klikki.fi/\">Jouko Pynnönen</a> and <a href=\"https://twitter.com/divy_er\">Divyesh Prajapati</a>; revision history information disclosure, reported independently by <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a> from the WordPress security team and by Dan Moen from the Wordfence Research Team; oEmbed denial of service reported by Jennifer Dodd from Automattic; unauthorized category removal from a post, reported by David Herrera from <a href=\"https://www.alleyinteractive.com/\">Alley Interactive</a>; password change via stolen cookie, reported by <a href=\"https://blogwaffe.com/\">Michael Adams</a> from the WordPress security team; and some less secure <code>sanitize_file_name</code> edge cases reported by <a href=\"http://peter.westwood.name/\">Peter Westwood</a> of  the WordPress security team.</p>\n<p>Thank you to the reporters 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.5.3 fixes 17 bugs from 4.5, 4.5.1 and 4.5.2. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.5.3\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.5.3\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.3</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.5.3.</p>\n<p>Thanks to everyone who contributed to 4.5.3:</p>\n<p><a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/neverything\">Silvan Hagen</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>,  <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/jmdodd\">Jennifer M. Dodd</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> and <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</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:\"4311\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s: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:32:\"WordPress 4.5.2 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2016/05/wordpress-4-5-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:\"Fri, 06 May 2016 19:17:08 +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.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4290\";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:381:\"WordPress 4.5.2 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.5.1 and earlier are affected by a SOME vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS [&#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:\"Helen Hou-Sandi\";s: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:1669:\"<p>WordPress 4.5.2 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.5.1 and earlier are affected by a <abbr title=\"Same-Origin Method Execution\">SOME</abbr> vulnerability through Plupload, the third-party library WordPress uses for uploading files. WordPress versions 4.2 through 4.5.1 are vulnerable to reflected XSS using specially crafted URIs through MediaElement.js, the third-party library used for media players. MediaElement.js and Plupload have also released updates fixing these issues.</p>\n<p>Both issues were analyzed and reported by Mario Heiderich, Masato Kinugawa, and Filedescriptor from <a href=\"https://cure53.de/\">Cure53</a>. Thanks to the team for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>, and to the Plupload and MediaElement.js teams for working closely with us to coördinate and fix these issues.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.5.2</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.5.2.</p>\n<p>Additionally, there are multiple widely publicized vulnerabilities in the ImageMagick image processing library, which is used by a number of hosts and is supported in WordPress. For our current response to these issues, see <a href=\"https://make.wordpress.org/core/2016/05/06/imagemagick-vulnerability-information/\">this post on the core development blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"4290\";s: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\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 30 Sep 2016 15:56:54 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 07 Sep 2016 15:59:20 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 249\";}s:5:\"build\";s:14:\"20160112052936\";}", "no");
INSERT INTO `wp_options` VALUES("139288", "_site_transient_timeout_browser_d39d7bf13b1a52d937e7ba3a4c99e04f", "1474250453", "yes");
INSERT INTO `wp_options` VALUES("139289", "_site_transient_browser_d39d7bf13b1a52d937e7ba3a4c99e04f", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"48.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;}", "yes");
INSERT INTO `wp_options` VALUES("139460", "_transient_is_multi_author", "0", "yes");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("5", "6", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("6", "6", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("7", "6", "_edit_lock", "1417575182:1");
INSERT INTO `wp_postmeta` VALUES("23", "18", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("24", "18", "_wp_page_template", "blog-classic-style1.php");
INSERT INTO `wp_postmeta` VALUES("25", "18", "_edit_lock", "1451488028:1");
INSERT INTO `wp_postmeta` VALUES("98", "28", "_form", "<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6\">\n		[text* name placeholder \"Name\"]\n	</div>\n	<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6\">\n		[email* email  placeholder \"Email\"]\n	</div>\n</div>\n<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n		[textarea* message placeholder \"Your Message\"]\n	</div>\n</div>\n<div class=\"row\">\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n        [submit class:btn class:btn-default-alt class:size-default \"Send\"]\n</div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("4556", "726", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("4555", "726", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("4554", "726", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("4553", "726", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("4552", "726", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("4540", "726", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("4539", "726", "_menu_item_object_id", "726");
INSERT INTO `wp_postmeta` VALUES("4538", "726", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("4537", "726", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("99", "28", "_mail", "a:8:{s:7:\"subject\";s:6:\"[name]\";s:6:\"sender\";s:52:\"[name] <wordpress@demo.cmssuperheroes.com/Wordpress>\";s:4:\"body\";s:162:\"From: [name] <[email]>\n\nMessage Body:\n[message]\n\n--\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("100", "28", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:57:\"WP Spectrum <wordpress@demo.cmssuperheroes.com/Wordpress>\";s:4:\"body\";s:143:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("101", "28", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}");
INSERT INTO `wp_postmeta` VALUES("102", "28", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("103", "28", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("40689", "16753", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:22:\"2015/02/aboutlight.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"aboutlight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"aboutlight-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"aboutlight-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"aboutlight-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"aboutlight-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"aboutlight-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"aboutlight-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"aboutlight-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"aboutlight-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"aboutlight-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"aboutlight-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("40688", "16753", "_wp_attached_file", "2015/02/aboutlight.jpg");
INSERT INTO `wp_postmeta` VALUES("180", "32", "_wp_attached_file", "2014/12/bg-slider1.jpg");
INSERT INTO `wp_postmeta` VALUES("181", "32", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:713;s:4:\"file\";s:22:\"2014/12/bg-slider1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-slider1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-slider1-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-slider1-1024x498.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"bg-slider1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"bg-slider1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"bg-slider1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"bg-slider1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"bg-slider1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"bg-slider1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"bg-slider1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"bg-slider1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("185", "35", "_edit_lock", "1450975884:1");
INSERT INTO `wp_postmeta` VALUES("184", "35", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("207", "35", "price", "");
INSERT INTO `wp_postmeta` VALUES("208", "35", "value", "");
INSERT INTO `wp_postmeta` VALUES("209", "35", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("210", "35", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("211", "35", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("212", "35", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("213", "35", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("214", "35", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("215", "35", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("216", "35", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("217", "35", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("218", "35", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("219", "35", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("220", "35", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("221", "35", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("222", "35", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("223", "35", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("224", "35", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("225", "35", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("226", "35", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("227", "35", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("228", "35", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("229", "35", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("230", "35", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("231", "35", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("232", "35", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("233", "35", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("234", "35", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("235", "35", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("236", "35", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("237", "35", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("238", "35", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("239", "35", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("240", "35", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("241", "35", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("242", "35", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("243", "35", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("244", "46", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("245", "46", "_edit_lock", "1450976038:1");
INSERT INTO `wp_postmeta` VALUES("52435", "17634", "_wp_attached_file", "2014/12/client-logo-2.png");
INSERT INTO `wp_postmeta` VALUES("247", "46", "price", "");
INSERT INTO `wp_postmeta` VALUES("248", "46", "value", "");
INSERT INTO `wp_postmeta` VALUES("249", "46", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("250", "46", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("251", "46", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("252", "46", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("253", "46", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("254", "46", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("255", "46", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("256", "46", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("257", "46", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("258", "46", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("259", "46", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("260", "46", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("261", "46", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("262", "46", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("263", "46", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("264", "46", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("265", "46", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("266", "46", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("267", "46", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("268", "46", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("269", "46", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("270", "46", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("271", "46", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("272", "46", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("273", "46", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("274", "46", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("275", "46", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("276", "46", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("277", "46", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("278", "46", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("279", "46", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("280", "46", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("281", "46", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("282", "46", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("283", "46", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("284", "47", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("285", "47", "_edit_lock", "1450976130:1");
INSERT INTO `wp_postmeta` VALUES("52438", "17635", "_wp_attached_file", "2014/12/client-logo-3.png");
INSERT INTO `wp_postmeta` VALUES("287", "47", "price", "");
INSERT INTO `wp_postmeta` VALUES("288", "47", "value", "");
INSERT INTO `wp_postmeta` VALUES("289", "47", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("290", "47", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("291", "47", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("292", "47", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("293", "47", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("294", "47", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("295", "47", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("296", "47", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("297", "47", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("298", "47", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("299", "47", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("300", "47", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("301", "47", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("302", "47", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("303", "47", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("304", "47", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("305", "47", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("306", "47", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("307", "47", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("308", "47", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("309", "47", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("310", "47", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("311", "47", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("312", "47", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("313", "47", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("314", "47", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("315", "47", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("316", "47", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("317", "47", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("318", "47", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("319", "47", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("320", "47", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("321", "47", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("322", "47", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("323", "47", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("324", "48", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("325", "48", "_edit_lock", "1450976191:1");
INSERT INTO `wp_postmeta` VALUES("52442", "17636", "_wp_attached_file", "2014/12/client-logo-4.png");
INSERT INTO `wp_postmeta` VALUES("327", "48", "price", "");
INSERT INTO `wp_postmeta` VALUES("328", "48", "value", "");
INSERT INTO `wp_postmeta` VALUES("329", "48", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("330", "48", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("331", "48", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("332", "48", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("333", "48", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("334", "48", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("335", "48", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("336", "48", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("337", "48", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("338", "48", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("339", "48", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("340", "48", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("341", "48", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("342", "48", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("343", "48", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("344", "48", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("345", "48", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("346", "48", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("347", "48", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("348", "48", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("349", "48", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("350", "48", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("351", "48", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("352", "48", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("353", "48", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("354", "48", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("355", "48", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("356", "48", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("357", "48", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("358", "48", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("359", "48", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("360", "48", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("361", "48", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("362", "48", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("363", "48", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("364", "49", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("365", "49", "_edit_lock", "1450976253:1");
INSERT INTO `wp_postmeta` VALUES("52445", "17637", "_wp_attached_file", "2014/12/client-logo-5.png");
INSERT INTO `wp_postmeta` VALUES("367", "49", "price", "");
INSERT INTO `wp_postmeta` VALUES("368", "49", "value", "");
INSERT INTO `wp_postmeta` VALUES("369", "49", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("370", "49", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("371", "49", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("372", "49", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("373", "49", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("374", "49", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("375", "49", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("376", "49", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("377", "49", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("378", "49", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("379", "49", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("380", "49", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("381", "49", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("382", "49", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("383", "49", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("384", "49", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("385", "49", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("386", "49", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("387", "49", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("388", "49", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("389", "49", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("390", "49", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("391", "49", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("392", "49", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("393", "49", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("394", "49", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("395", "49", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("396", "49", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("397", "49", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("398", "49", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("399", "49", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("400", "49", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("401", "49", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("402", "49", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("403", "49", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("404", "50", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("405", "50", "_edit_lock", "1450976407:1");
INSERT INTO `wp_postmeta` VALUES("52448", "17638", "_wp_attached_file", "2014/12/client-logo-6.png");
INSERT INTO `wp_postmeta` VALUES("407", "50", "price", "");
INSERT INTO `wp_postmeta` VALUES("408", "50", "value", "");
INSERT INTO `wp_postmeta` VALUES("409", "50", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("410", "50", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("411", "50", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("412", "50", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("413", "50", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("414", "50", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("415", "50", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("416", "50", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("417", "50", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("418", "50", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("419", "50", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("420", "50", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("421", "50", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("422", "50", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("423", "50", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("424", "50", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("425", "50", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("426", "50", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("427", "50", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("428", "50", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("429", "50", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("430", "50", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("431", "50", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("432", "50", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("433", "50", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("434", "50", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("435", "50", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("436", "50", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("437", "50", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("438", "50", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("439", "50", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("440", "50", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("441", "50", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("442", "50", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("443", "50", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("444", "51", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("445", "51", "_edit_lock", "1450976470:1");
INSERT INTO `wp_postmeta` VALUES("52451", "17640", "_wp_attached_file", "2014/12/client-logo-7.png");
INSERT INTO `wp_postmeta` VALUES("447", "51", "price", "");
INSERT INTO `wp_postmeta` VALUES("448", "51", "value", "");
INSERT INTO `wp_postmeta` VALUES("449", "51", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("450", "51", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("451", "51", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("452", "51", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("453", "51", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("454", "51", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("455", "51", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("456", "51", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("457", "51", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("458", "51", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("459", "51", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("460", "51", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("461", "51", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("462", "51", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("463", "51", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("464", "51", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("465", "51", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("466", "51", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("467", "51", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("468", "51", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("469", "51", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("470", "51", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("471", "51", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("472", "51", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("473", "51", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("474", "51", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("475", "51", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("476", "51", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("477", "51", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("478", "51", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("479", "51", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("480", "51", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("481", "51", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("482", "51", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("483", "51", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("484", "52", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("485", "52", "_edit_lock", "1450976589:1");
INSERT INTO `wp_postmeta` VALUES("52454", "17641", "_wp_attached_file", "2014/12/client-logo-8.png");
INSERT INTO `wp_postmeta` VALUES("487", "52", "price", "");
INSERT INTO `wp_postmeta` VALUES("488", "52", "value", "");
INSERT INTO `wp_postmeta` VALUES("489", "52", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("490", "52", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("491", "52", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("492", "52", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("493", "52", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("494", "52", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("495", "52", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("496", "52", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("497", "52", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("498", "52", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("499", "52", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("500", "52", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("501", "52", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("502", "52", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("503", "52", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("504", "52", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("505", "52", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("506", "52", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("507", "52", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("508", "52", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("509", "52", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("510", "52", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("511", "52", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("512", "52", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("513", "52", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("514", "52", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("515", "52", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("516", "52", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("517", "52", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("518", "52", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("519", "52", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("520", "52", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("521", "52", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("522", "52", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("523", "52", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("684", "76", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("685", "76", "_edit_lock", "1453130861:1");
INSERT INTO `wp_postmeta` VALUES("686", "77", "_wp_attached_file", "2014/12/3.png");
INSERT INTO `wp_postmeta` VALUES("687", "77", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:268;s:6:\"height\";i:268;s:4:\"file\";s:13:\"2014/12/3.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:13:\"3-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:13:\"3-268x214.png\";s:5:\"width\";i:268;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:13:\"3-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:11:\"3-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:8:{i:0;s:9:\"230x230_c\";i:1;s:9:\"170x170_c\";i:2;s:9:\"250x250_c\";i:3;s:9:\"310x310_c\";i:4;s:9:\"150x150_c\";i:5;s:9:\"110x110_c\";i:6;s:9:\"180x180_c\";i:7;s:9:\"100x100_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("688", "76", "_thumbnail_id", "77");
INSERT INTO `wp_postmeta` VALUES("689", "76", "price", "");
INSERT INTO `wp_postmeta` VALUES("690", "76", "value", "");
INSERT INTO `wp_postmeta` VALUES("691", "76", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("692", "76", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("693", "76", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("694", "76", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("695", "76", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("696", "76", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("697", "76", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("698", "76", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("699", "76", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("700", "76", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("701", "76", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("702", "76", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("703", "76", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("704", "76", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("705", "76", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("706", "76", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("707", "76", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("708", "76", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("709", "76", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("710", "76", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("711", "76", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("712", "76", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("713", "76", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("714", "76", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("715", "76", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("716", "76", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("717", "76", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("718", "76", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("719", "76", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("720", "76", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("721", "76", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("722", "76", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("723", "76", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("724", "76", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("48144", "17274", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48145", "17274", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("10410", "1199", "_wp_attached_file", "2015/01/Portfolio17.jpg");
INSERT INTO `wp_postmeta` VALUES("10411", "1199", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2015/01/Portfolio17.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio17-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Portfolio17-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio17-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio17-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio17-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio17-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio17-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio17-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio17-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio17-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5324", "857", "_wp_attached_file", "2014/12/headshot2.png");
INSERT INTO `wp_postmeta` VALUES("1356", "209", "_wp_attached_file", "2014/12/Homepage_02.jpg");
INSERT INTO `wp_postmeta` VALUES("1357", "209", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1025;s:4:\"file\";s:23:\"2014/12/Homepage_02.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Homepage_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:23:\"Homepage_02-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Homepage_02-1024x715.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:715;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Homepage_02-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Homepage_02-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Homepage_02-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Homepage_02-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Homepage_02-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Homepage_02-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Homepage_02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Homepage_02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("40681", "16720", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("40682", "16720", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("40683", "16720", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("15138", "1849", "_wp_attached_file", "2014/12/idea1bg.jpg");
INSERT INTO `wp_postmeta` VALUES("1361", "238", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1362", "238", "_edit_lock", "1444979574:1");
INSERT INTO `wp_postmeta` VALUES("4887", "780", "_wp_attached_file", "2014/12/42dcc5ea.jpg");
INSERT INTO `wp_postmeta` VALUES("1364", "238", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1365", "238", "price", "");
INSERT INTO `wp_postmeta` VALUES("1366", "238", "value", "");
INSERT INTO `wp_postmeta` VALUES("1367", "238", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1368", "238", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1369", "238", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1370", "238", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1371", "238", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1372", "238", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1373", "238", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1374", "238", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1375", "238", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1376", "238", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1377", "238", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1378", "238", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1379", "238", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1380", "238", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1381", "238", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1382", "238", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1383", "238", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1384", "238", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1385", "238", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1386", "238", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1387", "238", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1388", "238", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1389", "238", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1390", "238", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1391", "238", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1392", "238", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1393", "238", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1394", "238", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1395", "238", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1396", "238", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1397", "238", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1398", "238", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1399", "238", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1400", "238", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1401", "239", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1402", "239", "_edit_lock", "1440475080:1");
INSERT INTO `wp_postmeta` VALUES("1404", "239", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1405", "239", "price", "");
INSERT INTO `wp_postmeta` VALUES("1406", "239", "value", "");
INSERT INTO `wp_postmeta` VALUES("1407", "239", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1408", "239", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1409", "239", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1410", "239", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1411", "239", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1412", "239", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1413", "239", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1414", "239", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1415", "239", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1416", "239", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1417", "239", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1418", "239", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1419", "239", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1420", "239", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1421", "239", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1422", "239", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1423", "239", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1424", "239", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1425", "239", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1426", "239", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1427", "239", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1428", "239", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1429", "239", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1430", "239", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1431", "239", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1432", "239", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1433", "239", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1434", "239", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1435", "239", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1436", "239", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1437", "239", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1438", "239", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1439", "239", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1440", "239", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1441", "240", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1442", "240", "_edit_lock", "1425050821:1");
INSERT INTO `wp_postmeta` VALUES("1444", "240", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1445", "240", "price", "");
INSERT INTO `wp_postmeta` VALUES("1446", "240", "value", "");
INSERT INTO `wp_postmeta` VALUES("1447", "240", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1448", "240", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1449", "240", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1450", "240", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1451", "240", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1452", "240", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1453", "240", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1454", "240", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1455", "240", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1456", "240", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1457", "240", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1458", "240", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1459", "240", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1460", "240", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1461", "240", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1462", "240", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1463", "240", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1464", "240", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1465", "240", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1466", "240", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1467", "240", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1468", "240", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1469", "240", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1470", "240", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1471", "240", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1472", "240", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1473", "240", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1474", "240", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1475", "240", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1476", "240", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1477", "240", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1478", "240", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1479", "240", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1480", "240", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1481", "241", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1482", "241", "_edit_lock", "1439632179:1");
INSERT INTO `wp_postmeta` VALUES("1483", "242", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1484", "242", "_edit_lock", "1439783092:1");
INSERT INTO `wp_postmeta` VALUES("1487", "242", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1488", "242", "price", "");
INSERT INTO `wp_postmeta` VALUES("1489", "242", "value", "");
INSERT INTO `wp_postmeta` VALUES("1490", "242", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1491", "242", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1492", "242", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1493", "242", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1494", "242", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1495", "242", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1496", "242", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1497", "242", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1498", "242", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1499", "242", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1500", "242", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1501", "242", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1502", "242", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1503", "242", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1504", "242", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1505", "242", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1506", "242", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1507", "242", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1508", "242", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1509", "242", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1510", "242", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1511", "242", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1512", "242", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1513", "242", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1514", "242", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1515", "242", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1516", "242", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1517", "242", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1518", "242", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1519", "242", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1520", "242", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1521", "242", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1522", "242", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1523", "242", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1524", "241", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1525", "241", "price", "");
INSERT INTO `wp_postmeta` VALUES("1526", "241", "value", "");
INSERT INTO `wp_postmeta` VALUES("1527", "241", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1528", "241", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1529", "241", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1530", "241", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1531", "241", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1532", "241", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1533", "241", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1534", "241", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1535", "241", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1536", "241", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1537", "241", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1538", "241", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1539", "241", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1540", "241", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1541", "241", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1542", "241", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1543", "241", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1544", "241", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1545", "241", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1546", "241", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1547", "241", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1548", "241", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1549", "241", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1550", "241", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1551", "241", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1552", "241", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1553", "241", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1554", "241", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1555", "241", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1556", "241", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1557", "241", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1558", "241", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1559", "241", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1560", "241", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1561", "244", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1562", "244", "_edit_lock", "1434941778:1");
INSERT INTO `wp_postmeta` VALUES("1563", "243", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1564", "243", "_edit_lock", "1432820214:1");
INSERT INTO `wp_postmeta` VALUES("1567", "244", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1568", "244", "price", "");
INSERT INTO `wp_postmeta` VALUES("1569", "244", "value", "");
INSERT INTO `wp_postmeta` VALUES("1570", "244", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1571", "244", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1572", "244", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1573", "244", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1574", "244", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1575", "244", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1576", "244", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1577", "244", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1578", "244", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1579", "244", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1580", "244", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1581", "244", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1582", "244", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1583", "244", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1584", "244", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1585", "244", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1586", "244", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1587", "244", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1588", "244", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1589", "244", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1590", "244", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1591", "244", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1592", "244", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1593", "244", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1594", "244", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1595", "244", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1596", "244", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1597", "244", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1598", "244", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1599", "244", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1600", "244", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1601", "244", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1602", "244", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1603", "244", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1604", "243", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1605", "243", "price", "");
INSERT INTO `wp_postmeta` VALUES("1606", "243", "value", "");
INSERT INTO `wp_postmeta` VALUES("1607", "243", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1608", "243", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1609", "243", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1610", "243", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1611", "243", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1612", "243", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1613", "243", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1614", "243", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1615", "243", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1616", "243", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1617", "243", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1618", "243", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1619", "243", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1620", "243", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1621", "243", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1622", "243", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1623", "243", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1624", "243", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1625", "243", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1626", "243", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1627", "243", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1628", "243", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1629", "243", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1630", "243", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1631", "243", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1632", "243", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1633", "243", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1634", "243", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1635", "243", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1636", "243", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1637", "243", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1638", "243", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1639", "243", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1640", "243", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("1641", "245", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("1642", "245", "_edit_lock", "1435568952:1");
INSERT INTO `wp_postmeta` VALUES("1644", "245", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("1645", "245", "price", "");
INSERT INTO `wp_postmeta` VALUES("1646", "245", "value", "");
INSERT INTO `wp_postmeta` VALUES("1647", "245", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("1648", "245", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("1649", "245", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("1650", "245", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("1651", "245", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("1652", "245", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("1653", "245", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("1654", "245", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("1655", "245", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("1656", "245", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("1657", "245", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("1658", "245", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("1659", "245", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("1660", "245", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("1661", "245", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("1662", "245", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("1663", "245", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("1664", "245", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("1665", "245", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("1666", "245", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("1667", "245", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("1668", "245", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("1669", "245", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("1670", "245", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("1671", "245", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("1672", "245", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("1673", "245", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("1674", "245", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("1675", "245", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("1676", "245", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("1677", "245", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("1678", "245", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("1679", "245", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("1680", "245", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("21296", "9036", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21295", "9036", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21294", "9036", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21293", "9036", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21292", "9036", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21291", "9036", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21290", "9036", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21289", "9036", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21288", "9036", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21287", "9036", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21286", "9036", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21285", "9036", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21284", "9036", "best_value", "Best");
INSERT INTO `wp_postmeta` VALUES("21283", "9036", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21282", "9036", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21281", "9036", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21280", "9036", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21279", "9036", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21278", "9036", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21277", "9036", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21276", "9036", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21275", "9036", "option_5", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21274", "9036", "option_4", "10 Domains");
INSERT INTO `wp_postmeta` VALUES("21273", "9036", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21272", "9036", "option_2", "20GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21269", "9036", "price", "29.99");
INSERT INTO `wp_postmeta` VALUES("21270", "9036", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21271", "9036", "option_1", "123Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21350", "9039", "option_2", "150GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21349", "9039", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21348", "9039", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21347", "9039", "price", "99.99");
INSERT INTO `wp_postmeta` VALUES("21346", "9039", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21345", "9038", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21344", "9038", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21343", "9038", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21342", "9038", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21341", "9038", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21340", "9038", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21339", "9038", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21338", "9038", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21337", "9038", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21336", "9038", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21335", "9038", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21334", "9038", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21333", "9038", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21332", "9038", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21331", "9038", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21330", "9038", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21329", "9038", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21328", "9038", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21327", "9038", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21326", "9038", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21325", "9038", "is_feature", "1");
INSERT INTO `wp_postmeta` VALUES("21322", "9038", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21323", "9038", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21324", "9038", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21401", "9135", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21400", "9135", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21399", "9135", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21398", "9135", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21397", "9135", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21396", "9135", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21395", "9135", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21394", "9135", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21393", "9135", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21392", "9135", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21391", "9135", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21390", "9135", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("21389", "9135", "option_4", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21388", "9135", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21387", "9135", "option_2", "10GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21386", "9135", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21385", "9135", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21384", "9135", "price", "09.99");
INSERT INTO `wp_postmeta` VALUES("21383", "9135", "_thumbnail_id", "3295");
INSERT INTO `wp_postmeta` VALUES("21382", "9135", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21381", "9039", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21380", "9039", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21379", "9039", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21378", "9039", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21377", "9039", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21268", "9036", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21265", "9032", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21266", "9032", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21267", "9032", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21264", "9032", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21254", "9032", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21255", "9032", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21256", "9032", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21257", "9032", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21258", "9032", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21259", "9032", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21260", "9032", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21261", "9032", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21262", "9032", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21263", "9032", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("2032", "385", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2033", "385", "_edit_lock", "1473648729:1");
INSERT INTO `wp_postmeta` VALUES("2096", "391", "_edit_lock", "1452614575:1");
INSERT INTO `wp_postmeta` VALUES("2095", "391", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2045", "385", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("2046", "385", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("2047", "385", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("2048", "385", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("2049", "385", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2050", "385", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2051", "385", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("2052", "385", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("2053", "385", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("2054", "385", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("2055", "385", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("2056", "385", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("2057", "385", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("2058", "385", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("2059", "385", "price", "");
INSERT INTO `wp_postmeta` VALUES("2060", "385", "value", "");
INSERT INTO `wp_postmeta` VALUES("2061", "385", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("2062", "385", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("2063", "385", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("2064", "385", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("2065", "385", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("2066", "385", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("2067", "385", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("2068", "385", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("2069", "385", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("2070", "385", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("2071", "385", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("2072", "385", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("2073", "385", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("2074", "385", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("2075", "385", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("2076", "385", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("2077", "385", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("2078", "385", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("2079", "385", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("2080", "385", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("2081", "385", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("2082", "385", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("2083", "385", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("2084", "385", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2085", "385", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("2086", "385", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("2087", "385", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("2088", "385", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2089", "385", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("2090", "385", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("2091", "385", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("2092", "385", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("2093", "385", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("2094", "385", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("2100", "391", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("2101", "391", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("2102", "391", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("2103", "391", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("2104", "391", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2105", "391", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2106", "391", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("2107", "391", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("2108", "391", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("2109", "391", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("2110", "391", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("2111", "391", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("2112", "391", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("2113", "391", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("2114", "391", "price", "");
INSERT INTO `wp_postmeta` VALUES("2115", "391", "value", "");
INSERT INTO `wp_postmeta` VALUES("2116", "391", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("2117", "391", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("2118", "391", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("2119", "391", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("2120", "391", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("2121", "391", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("2122", "391", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("2123", "391", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("2124", "391", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("2125", "391", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("2126", "391", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("2127", "391", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("2128", "391", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("2129", "391", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("2130", "391", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("2131", "391", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("2132", "391", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("2133", "391", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("2134", "391", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("2135", "391", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("2136", "391", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("2137", "391", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("2138", "391", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("2139", "391", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2140", "391", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("2141", "391", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("2142", "391", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("2143", "391", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2144", "391", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("2145", "391", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("2146", "391", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("2147", "391", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("2148", "391", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("2149", "391", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("4508", "244", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("4513", "243", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("4514", "245", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("9117", "1124", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:22:\"2014/12/Portfolio7.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Portfolio7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Portfolio7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Portfolio7-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"Portfolio7-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Portfolio7-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Portfolio7-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Portfolio7-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"Portfolio7-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"Portfolio7-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Portfolio7-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4551", "726", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("4550", "726", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("4549", "726", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("4548", "726", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("4547", "726", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("4546", "726", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("4543", "726", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("4544", "726", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("7216", "1003", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7215", "1003", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("7214", "1003", "eg_cobbles", "{\"33\":{\"cobbles\":\"2:1\"}}");
INSERT INTO `wp_postmeta` VALUES("7213", "1003", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("2258", "394", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2259", "394", "_edit_lock", "1473649228:1");
INSERT INTO `wp_postmeta` VALUES("2314", "396", "_edit_lock", "1452615822:1");
INSERT INTO `wp_postmeta` VALUES("2313", "396", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("2263", "394", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("2264", "394", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("2265", "394", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("2266", "394", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("2267", "394", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2268", "394", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2269", "394", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("2270", "394", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("2271", "394", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("2272", "394", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("2273", "394", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("2274", "394", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("2275", "394", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("2276", "394", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("2277", "394", "price", "");
INSERT INTO `wp_postmeta` VALUES("2278", "394", "value", "");
INSERT INTO `wp_postmeta` VALUES("2279", "394", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("2280", "394", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("2281", "394", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("2282", "394", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("2283", "394", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("2284", "394", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("2285", "394", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("2286", "394", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("2287", "394", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("2288", "394", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("2289", "394", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("2290", "394", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("2291", "394", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("2292", "394", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("2293", "394", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("2294", "394", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("2295", "394", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("2296", "394", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("2297", "394", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("2298", "394", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("2299", "394", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("2300", "394", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("2301", "394", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("2302", "394", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2303", "394", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("2304", "394", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("2305", "394", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("2306", "394", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2307", "394", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("2308", "394", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("2309", "394", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("2310", "394", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("2311", "394", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("2312", "394", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("2318", "396", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("2319", "396", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("2320", "396", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("2321", "396", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("2322", "396", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2323", "396", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2324", "396", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("2325", "396", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("2326", "396", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("2327", "396", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("2328", "396", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("2329", "396", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("2330", "396", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("2331", "396", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("2332", "396", "price", "");
INSERT INTO `wp_postmeta` VALUES("2333", "396", "value", "");
INSERT INTO `wp_postmeta` VALUES("2334", "396", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("2335", "396", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("2336", "396", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("2337", "396", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("2338", "396", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("2339", "396", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("2340", "396", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("2341", "396", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("2342", "396", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("2343", "396", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("2344", "396", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("2345", "396", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("2346", "396", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("2347", "396", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("2348", "396", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("2349", "396", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("2350", "396", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("2351", "396", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("2352", "396", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("2353", "396", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("2354", "396", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("2355", "396", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("2356", "396", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("2357", "396", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("2358", "396", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("2359", "396", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("2360", "396", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("2361", "396", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("2362", "396", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("2363", "396", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("2364", "396", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("2365", "396", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("2366", "396", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("2367", "396", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7210", "1003", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7209", "1003", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7208", "1003", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7207", "1003", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7206", "1003", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7205", "1003", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7204", "1003", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("2644", "394", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("2645", "396", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("48142", "17274", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48143", "17274", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("2664", "461", "_wp_attached_file", "2014/12/bg-slider4.jpg");
INSERT INTO `wp_postmeta` VALUES("2665", "461", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1238;s:4:\"file\";s:22:\"2014/12/bg-slider4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-slider4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-slider4-300x253.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-slider4-1024x864.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"bg-slider4-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"bg-slider4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"bg-slider4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"bg-slider4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"bg-slider4-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"bg-slider4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"bg-slider4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"bg-slider4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2671", "475", "_wp_attached_file", "2014/12/parallax-corporate.jpg");
INSERT INTO `wp_postmeta` VALUES("2672", "475", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1066;s:4:\"file\";s:30:\"2014/12/parallax-corporate.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"parallax-corporate-1024x744.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:30:\"parallax-corporate-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:28:\"parallax-corporate-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2673", "491", "_wp_attached_file", "2014/12/Homepage_Corporate_02.jpg");
INSERT INTO `wp_postmeta` VALUES("2674", "491", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:887;s:4:\"file\";s:33:\"2014/12/Homepage_Corporate_02.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_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:33:\"Homepage_Corporate_02-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Homepage_Corporate_02-1024x619.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:619;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:33:\"Homepage_Corporate_02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:31:\"Homepage_Corporate_02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("54179", "17237", "_edit_lock", "1475252143:1");
INSERT INTO `wp_postmeta` VALUES("13583", "1519", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:1560;s:4:\"file\";s:20:\"2014/12/Mountain.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Mountain-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Mountain-450x600.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Mountain-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"Mountain-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"Mountain-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"Mountain-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"Mountain-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"Mountain-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"Mountain-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"Mountain-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"Mountain-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"480x762_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("21320", "9038", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21321", "9038", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("2811", "520", "_wp_attached_file", "2014/12/sj.png");
INSERT INTO `wp_postmeta` VALUES("2812", "520", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:419;s:6:\"height\";i:800;s:4:\"file\";s:14:\"2014/12/sj.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"sj-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:14:\"sj-157x300.png\";s:5:\"width\";i:157;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:14:\"sj-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:14:\"sj-419x272.png\";s:5:\"width\";i:419;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:14:\"sj-419x295.png\";s:5:\"width\";i:419;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:14:\"sj-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:14:\"sj-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:14:\"sj-419x400.png\";s:5:\"width\";i:419;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:14:\"sj-419x441.png\";s:5:\"width\";i:419;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:12:\"sj-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("2831", "570", "_wp_attached_file", "2014/12/parallax-about.jpg");
INSERT INTO `wp_postmeta` VALUES("2832", "570", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:998;s:4:\"file\";s:26:\"2014/12/parallax-about.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"parallax-about-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"parallax-about-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"parallax-about-1024x697.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:697;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:26:\"parallax-about-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:26:\"parallax-about-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"parallax-about-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"parallax-about-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:26:\"parallax-about-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:26:\"parallax-about-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:26:\"parallax-about-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"parallax-about-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4507", "240", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("7178", "1003", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("4542", "726", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("4541", "726", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("4558", "726", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("4557", "726", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("40680", "16720", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("3044", "18", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("3045", "18", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("3046", "18", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("3047", "18", "cs_page_layout", "right-fixed");
INSERT INTO `wp_postmeta` VALUES("3048", "18", "cs_sidebar_left", "cshero-widget-right");
INSERT INTO `wp_postmeta` VALUES("3049", "18", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("3050", "18", "cs_onepage", "0");
INSERT INTO `wp_postmeta` VALUES("3051", "18", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("3052", "18", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("3053", "18", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("3054", "18", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("3055", "18", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("3056", "18", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("3057", "18", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("3058", "18", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("3059", "18", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("3060", "18", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("3061", "18", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("3062", "18", "cs_header_setting", "0");
INSERT INTO `wp_postmeta` VALUES("3063", "18", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("3064", "18", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("3065", "18", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("3066", "18", "cs_header_top2_widgets", "");
INSERT INTO `wp_postmeta` VALUES("3067", "18", "cs_header_content_widgets", "");
INSERT INTO `wp_postmeta` VALUES("3068", "18", "cs_header_content_widgets1", "1");
INSERT INTO `wp_postmeta` VALUES("3069", "18", "cs_header_content_widgets2", "1");
INSERT INTO `wp_postmeta` VALUES("3070", "18", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("3071", "18", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("3072", "18", "cs_header_fixed_top", "0");
INSERT INTO `wp_postmeta` VALUES("3073", "18", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("3074", "18", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("3075", "18", "cs_header_border_bottom", "1");
INSERT INTO `wp_postmeta` VALUES("3076", "18", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("3077", "18", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("3078", "18", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("3079", "18", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("3080", "18", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("3081", "18", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("3082", "18", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("3083", "18", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("3084", "18", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("3085", "18", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("3086", "18", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("3087", "18", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("3088", "18", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("3089", "18", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("3090", "18", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("3091", "18", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("3092", "18", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("3093", "18", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("3094", "18", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("3095", "18", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("3096", "18", "cs_page_title_setting", "1");
INSERT INTO `wp_postmeta` VALUES("3097", "18", "cs_page_title_enable", "1");
INSERT INTO `wp_postmeta` VALUES("3098", "18", "cs_title_bar_align", "center");
INSERT INTO `wp_postmeta` VALUES("3099", "18", "cs_title_bar_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("3100", "18", "cs_page_title_custom_size", "57px");
INSERT INTO `wp_postmeta` VALUES("3101", "18", "cs_page_title_custom_text", "BLOG CLASSIC STYLE 1");
INSERT INTO `wp_postmeta` VALUES("3102", "18", "cs_page_title_custom_subheader_text", "A clean and classic blog layout");
INSERT INTO `wp_postmeta` VALUES("3103", "18", "cs_page_title_custom_subheader_text_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("3104", "18", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("3105", "18", "cs_page_title_bg", "910");
INSERT INTO `wp_postmeta` VALUES("3106", "18", "cs_page_title_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("3107", "18", "cs_page_title_bg_size", "cover");
INSERT INTO `wp_postmeta` VALUES("3108", "18", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("3109", "18", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("3110", "18", "cs_page_title_bg_parallax", "1");
INSERT INTO `wp_postmeta` VALUES("3111", "18", "cs_page_title_padding", "150px 0 150px 0");
INSERT INTO `wp_postmeta` VALUES("3112", "18", "cs_page_title_margin", "0px 0px 20px 0px");
INSERT INTO `wp_postmeta` VALUES("3113", "18", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("3114", "18", "cs_breadcrumb", "1");
INSERT INTO `wp_postmeta` VALUES("3115", "18", "cs_breadcrumb_text_align", "center");
INSERT INTO `wp_postmeta` VALUES("3116", "18", "cs_breadcrumb_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("3117", "18", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("3118", "18", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("3119", "18", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("3120", "18", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("3121", "18", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("3122", "18", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("3123", "18", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("3124", "18", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("3125", "18", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("3126", "18", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("3127", "18", "cs_page_category", "13,14,12,15,16");
INSERT INTO `wp_postmeta` VALUES("3128", "18", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("3129", "18", "cs_page_limit", "5");
INSERT INTO `wp_postmeta` VALUES("3130", "18", "cs_page_masonry_columns", "3");
INSERT INTO `wp_postmeta` VALUES("3131", "18", "cs_page_masonry_loadmore", "no");
INSERT INTO `wp_postmeta` VALUES("3132", "18", "cs_page_masonry_filter", "yes");
INSERT INTO `wp_postmeta` VALUES("3133", "18", "price", "");
INSERT INTO `wp_postmeta` VALUES("3134", "18", "value", "");
INSERT INTO `wp_postmeta` VALUES("3135", "18", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3136", "18", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3137", "18", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3138", "18", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3139", "18", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3140", "18", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3141", "18", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3142", "18", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3143", "18", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3144", "18", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3145", "18", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3146", "18", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3147", "18", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3148", "18", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3149", "18", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3150", "18", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3151", "18", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3152", "18", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3153", "18", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3154", "18", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3155", "18", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3156", "18", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3157", "18", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3158", "18", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3159", "18", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3160", "18", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3161", "18", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3162", "18", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3163", "18", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3164", "18", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3165", "18", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3166", "18", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3167", "18", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3168", "18", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("3169", "18", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("3170", "391", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("3171", "385", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("3172", "615", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3173", "615", "_edit_lock", "1452614573:1");
INSERT INTO `wp_postmeta` VALUES("3174", "616", "_wp_attached_file", "2014/12/post-cat1.jpg");
INSERT INTO `wp_postmeta` VALUES("3175", "616", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:570;s:6:\"height\";i:380;s:4:\"file\";s:21:\"2014/12/post-cat1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"post-cat1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"post-cat1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"post-cat1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"post-cat1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"post-cat1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"post-cat1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"post-cat1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"post-cat1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("3176", "617", "_wp_attached_file", "2014/12/post-cat2.jpg");
INSERT INTO `wp_postmeta` VALUES("3177", "617", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:570;s:6:\"height\";i:382;s:4:\"file\";s:21:\"2014/12/post-cat2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"post-cat2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"post-cat2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"post-cat2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"post-cat2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"post-cat2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"post-cat2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"post-cat2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"post-cat2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("3231", "615", "_nectar_love", "1");
INSERT INTO `wp_postmeta` VALUES("3181", "615", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3182", "615", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3183", "615", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3184", "615", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3185", "615", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3186", "615", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3187", "615", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3188", "615", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3189", "615", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3190", "615", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3191", "615", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3192", "615", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3193", "615", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3194", "615", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3195", "615", "price", "");
INSERT INTO `wp_postmeta` VALUES("3196", "615", "value", "");
INSERT INTO `wp_postmeta` VALUES("3197", "615", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3198", "615", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3199", "615", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3200", "615", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3201", "615", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3202", "615", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3203", "615", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3204", "615", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3205", "615", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3206", "615", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3207", "615", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3208", "615", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3209", "615", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3210", "615", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3211", "615", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3212", "615", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3213", "615", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3214", "615", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3215", "615", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3216", "615", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3217", "615", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3218", "615", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3219", "615", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3220", "615", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3221", "615", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3222", "615", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3223", "615", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3224", "615", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3225", "615", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3226", "615", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3227", "615", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3228", "615", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3229", "615", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3230", "615", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("3232", "623", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3233", "623", "_edit_lock", "1452614498:1");
INSERT INTO `wp_postmeta` VALUES("3288", "625", "_edit_lock", "1452614572:1");
INSERT INTO `wp_postmeta` VALUES("3287", "625", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3237", "623", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3238", "623", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3239", "623", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3240", "623", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3241", "623", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3242", "623", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3243", "623", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3244", "623", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3245", "623", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3246", "623", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3247", "623", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3248", "623", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3249", "623", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3250", "623", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3251", "623", "price", "");
INSERT INTO `wp_postmeta` VALUES("3252", "623", "value", "");
INSERT INTO `wp_postmeta` VALUES("3253", "623", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3254", "623", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3255", "623", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3256", "623", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3257", "623", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3258", "623", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3259", "623", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3260", "623", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3261", "623", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3262", "623", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3263", "623", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3264", "623", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3265", "623", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3266", "623", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3267", "623", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3268", "623", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3269", "623", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3270", "623", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3271", "623", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3272", "623", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3273", "623", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3274", "623", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3275", "623", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3276", "623", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3277", "623", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3278", "623", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3279", "623", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3280", "623", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3281", "623", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3282", "623", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3283", "623", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3284", "623", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3285", "623", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3286", "623", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("12512", "1362", "_wp_attached_file", "2014/12/LittleBoatTown.jpg");
INSERT INTO `wp_postmeta` VALUES("3292", "625", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3293", "625", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3294", "625", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3295", "625", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3296", "625", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3297", "625", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3298", "625", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3299", "625", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3300", "625", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3301", "625", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3302", "625", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3303", "625", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3304", "625", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3305", "625", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3306", "625", "price", "");
INSERT INTO `wp_postmeta` VALUES("3307", "625", "value", "");
INSERT INTO `wp_postmeta` VALUES("3308", "625", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3309", "625", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3310", "625", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3311", "625", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3312", "625", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3313", "625", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3314", "625", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3315", "625", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3316", "625", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3317", "625", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3318", "625", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3319", "625", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3320", "625", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3321", "625", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3322", "625", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3323", "625", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3324", "625", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3325", "625", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3326", "625", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3327", "625", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3328", "625", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3329", "625", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3330", "625", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3331", "625", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3332", "625", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3333", "625", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3334", "625", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3335", "625", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3336", "625", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3337", "625", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3338", "625", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3339", "625", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3340", "625", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3341", "625", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("3343", "627", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3398", "629", "_edit_lock", "1452614570:1");
INSERT INTO `wp_postmeta` VALUES("3397", "629", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3346", "627", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3347", "627", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3348", "627", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3349", "627", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3350", "627", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3351", "627", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3352", "627", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3353", "627", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3354", "627", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3355", "627", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3356", "627", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3357", "627", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3358", "627", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3359", "627", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3360", "627", "price", "");
INSERT INTO `wp_postmeta` VALUES("3361", "627", "value", "");
INSERT INTO `wp_postmeta` VALUES("3362", "627", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3363", "627", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3364", "627", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3365", "627", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3366", "627", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3367", "627", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3368", "627", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3369", "627", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3370", "627", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3371", "627", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3372", "627", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3373", "627", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3374", "627", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3375", "627", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3376", "627", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3377", "627", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3378", "627", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3379", "627", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3380", "627", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3381", "627", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3382", "627", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3383", "627", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3384", "627", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3385", "627", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3386", "627", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3387", "627", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3388", "627", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3389", "627", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3390", "627", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3391", "627", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3392", "627", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3393", "627", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3394", "627", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3395", "627", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("3396", "627", "_edit_lock", "1452614500:1");
INSERT INTO `wp_postmeta` VALUES("11966", "1346", "_wp_attached_file", "2014/12/VanInDistance.jpg");
INSERT INTO `wp_postmeta` VALUES("3403", "629", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3404", "629", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3405", "629", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3406", "629", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3407", "629", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3408", "629", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3409", "629", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3410", "629", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3411", "629", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3412", "629", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3413", "629", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3414", "629", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3415", "629", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3416", "629", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3417", "629", "price", "");
INSERT INTO `wp_postmeta` VALUES("3418", "629", "value", "");
INSERT INTO `wp_postmeta` VALUES("3419", "629", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3420", "629", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3421", "629", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3422", "629", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3423", "629", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3424", "629", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3425", "629", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3426", "629", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3427", "629", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3428", "629", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3429", "629", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3430", "629", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3431", "629", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3432", "629", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3433", "629", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3434", "629", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3435", "629", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3436", "629", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3437", "629", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3438", "629", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3439", "629", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3440", "629", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3441", "629", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3442", "629", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3443", "629", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3444", "629", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3445", "629", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3446", "629", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3447", "629", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3448", "629", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3449", "629", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3450", "629", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3451", "629", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3452", "629", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("3453", "630", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3563", "635", "_edit_lock", "1452614488:1");
INSERT INTO `wp_postmeta` VALUES("3456", "630", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3457", "630", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3458", "630", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3459", "630", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3460", "630", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3461", "630", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3462", "630", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3463", "630", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3464", "630", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3465", "630", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3466", "630", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3467", "630", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3468", "630", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3469", "630", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3470", "630", "price", "");
INSERT INTO `wp_postmeta` VALUES("3471", "630", "value", "");
INSERT INTO `wp_postmeta` VALUES("3472", "630", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3473", "630", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3474", "630", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3475", "630", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3476", "630", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3477", "630", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3478", "630", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3479", "630", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3480", "630", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3481", "630", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3482", "630", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3483", "630", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3484", "630", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3485", "630", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3486", "630", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3487", "630", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3488", "630", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3489", "630", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3490", "630", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3491", "630", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3492", "630", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3493", "630", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3494", "630", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3495", "630", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3496", "630", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3497", "630", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3498", "630", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3499", "630", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3500", "630", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3501", "630", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3502", "630", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3503", "630", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3504", "630", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3505", "630", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("3506", "630", "_edit_lock", "1452614503:1");
INSERT INTO `wp_postmeta` VALUES("3507", "633", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3508", "633", "_edit_lock", "1452614502:1");
INSERT INTO `wp_postmeta` VALUES("3562", "635", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("3512", "633", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3513", "633", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3514", "633", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3515", "633", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3516", "633", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3517", "633", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3518", "633", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3519", "633", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3520", "633", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3521", "633", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3522", "633", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3523", "633", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3524", "633", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3525", "633", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3526", "633", "price", "");
INSERT INTO `wp_postmeta` VALUES("3527", "633", "value", "");
INSERT INTO `wp_postmeta` VALUES("3528", "633", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3529", "633", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3530", "633", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3531", "633", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3532", "633", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3533", "633", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3534", "633", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3535", "633", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3536", "633", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3537", "633", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3538", "633", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3539", "633", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3540", "633", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3541", "633", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3542", "633", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3543", "633", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3544", "633", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3545", "633", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3546", "633", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3547", "633", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3548", "633", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3549", "633", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3550", "633", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3551", "633", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3552", "633", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3553", "633", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3554", "633", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3555", "633", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3556", "633", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3557", "633", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3558", "633", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3559", "633", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3560", "633", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3561", "633", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("11752", "1340", "_wp_attached_file", "2014/12/Portfolio51.jpg");
INSERT INTO `wp_postmeta` VALUES("3618", "18", "cs_template_classic_cat", "13,14,15,16");
INSERT INTO `wp_postmeta` VALUES("3617", "18", "cs_client_link", "");
INSERT INTO `wp_postmeta` VALUES("3567", "635", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("3568", "635", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("3569", "635", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("3570", "635", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("3571", "635", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3572", "635", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3573", "635", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("3574", "635", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("3575", "635", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("3576", "635", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("3577", "635", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("3578", "635", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("3579", "635", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("3580", "635", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("3581", "635", "price", "");
INSERT INTO `wp_postmeta` VALUES("3582", "635", "value", "");
INSERT INTO `wp_postmeta` VALUES("3583", "635", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("3584", "635", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("3585", "635", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("3586", "635", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("3587", "635", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("3588", "635", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("3589", "635", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("3590", "635", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("3591", "635", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("3592", "635", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("3593", "635", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("3594", "635", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("3595", "635", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("3596", "635", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("3597", "635", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("3598", "635", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("3599", "635", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("3600", "635", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("3601", "635", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("3602", "635", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("3603", "635", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("3604", "635", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("3605", "635", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("3606", "635", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("3607", "635", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("3608", "635", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("3609", "635", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("3610", "635", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("3611", "635", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("3612", "635", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("3613", "635", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("3614", "635", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("3615", "635", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("3616", "635", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("4089", "657", "_edit_lock", "1452614515:1");
INSERT INTO `wp_postmeta` VALUES("4088", "657", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7192", "1003", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7190", "1003", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7191", "1003", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7189", "1003", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7188", "1003", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7187", "1003", "_wp_old_slug", "whenever-i-feel-the-need-to-exercise-i-lie-down-until-it-goes-away");
INSERT INTO `wp_postmeta` VALUES("7186", "1003", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7185", "1003", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7184", "1003", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7183", "1003", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7182", "1003", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7180", "1003", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7181", "1003", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7179", "1003", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7176", "1003", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7177", "1003", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7175", "1003", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7174", "1003", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7171", "1003", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7172", "1003", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("48540", "17415", "_wp_attached_file", "2015/01/portfolio-13.jpg");
INSERT INTO `wp_postmeta` VALUES("7168", "1003", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7169", "1003", "_edit_lock", "1452614250:1");
INSERT INTO `wp_postmeta` VALUES("7173", "1003", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("4090", "658", "_wp_attached_file", "2015/01/post1.png");
INSERT INTO `wp_postmeta` VALUES("4091", "658", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:672;s:6:\"height\";i:448;s:4:\"file\";s:17:\"2015/01/post1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"post1-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:17:\"post1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"post1-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"post1-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"post1-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"post1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"post1-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"post1-672x400.png\";s:5:\"width\";i:672;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"post1-672x441.png\";s:5:\"width\";i:672;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"post1-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("4092", "659", "_wp_attached_file", "2015/01/post2.png");
INSERT INTO `wp_postmeta` VALUES("4093", "659", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:672;s:6:\"height\";i:449;s:4:\"file\";s:17:\"2015/01/post2.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"post2-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:17:\"post2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"post2-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"post2-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"post2-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"post2-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"post2-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"post2-672x400.png\";s:5:\"width\";i:672;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"post2-672x441.png\";s:5:\"width\";i:672;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"post2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4150", "662", "_edit_lock", "1452614414:1");
INSERT INTO `wp_postmeta` VALUES("4149", "662", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("4099", "657", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("4100", "657", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("4101", "657", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("4102", "657", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("4103", "657", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4104", "657", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4105", "657", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("4106", "657", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("4107", "657", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("4108", "657", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("4109", "657", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("4110", "657", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("4111", "657", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("4112", "657", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("4113", "657", "price", "");
INSERT INTO `wp_postmeta` VALUES("4114", "657", "value", "");
INSERT INTO `wp_postmeta` VALUES("4115", "657", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("4116", "657", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("4117", "657", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("4118", "657", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("4119", "657", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("4120", "657", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("4121", "657", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("4122", "657", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("4123", "657", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("4124", "657", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("4125", "657", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("4126", "657", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("4127", "657", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("4128", "657", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("4129", "657", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("4130", "657", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("4131", "657", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("4132", "657", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("4133", "657", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("4134", "657", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("4135", "657", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("4136", "657", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("4137", "657", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("4138", "657", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4139", "657", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("4140", "657", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("4141", "657", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("4142", "657", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4143", "657", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("4144", "657", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("4145", "657", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("4146", "657", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("4147", "657", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("4148", "657", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("11664", "1336", "_wp_attached_file", "2015/01/country-train.jpg");
INSERT INTO `wp_postmeta` VALUES("4205", "664", "_edit_lock", "1453430475:1");
INSERT INTO `wp_postmeta` VALUES("4204", "664", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("4154", "662", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("4155", "662", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("4156", "662", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("4157", "662", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("4158", "662", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4159", "662", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4160", "662", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("4161", "662", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("4162", "662", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("4163", "662", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("4164", "662", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("4165", "662", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("4166", "662", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("4167", "662", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("4168", "662", "price", "");
INSERT INTO `wp_postmeta` VALUES("4169", "662", "value", "");
INSERT INTO `wp_postmeta` VALUES("4170", "662", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("4171", "662", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("4172", "662", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("4173", "662", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("4174", "662", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("4175", "662", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("4176", "662", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("4177", "662", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("4178", "662", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("4179", "662", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("4180", "662", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("4181", "662", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("4182", "662", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("4183", "662", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("4184", "662", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("4185", "662", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("4186", "662", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("4187", "662", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("4188", "662", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("4189", "662", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("4190", "662", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("4191", "662", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("4192", "662", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("4193", "662", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4194", "662", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("4195", "662", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("4196", "662", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("4197", "662", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4198", "662", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("4199", "662", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("4200", "662", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("4201", "662", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("4202", "662", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("4203", "662", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("4258", "666", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("4208", "664", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("4209", "664", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("4210", "664", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("4211", "664", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("4212", "664", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4213", "664", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4214", "664", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("4215", "664", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("4216", "664", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("4217", "664", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("4218", "664", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("4219", "664", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("4220", "664", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("4221", "664", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("4222", "664", "price", "");
INSERT INTO `wp_postmeta` VALUES("4223", "664", "value", "");
INSERT INTO `wp_postmeta` VALUES("4224", "664", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("4225", "664", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("4226", "664", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("4227", "664", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("4228", "664", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("4229", "664", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("4230", "664", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("4231", "664", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("4232", "664", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("4233", "664", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("4234", "664", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("4235", "664", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("4236", "664", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("4237", "664", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("4238", "664", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("4239", "664", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("4240", "664", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("4241", "664", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("4242", "664", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("4243", "664", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("4244", "664", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("4245", "664", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("4246", "664", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("4247", "664", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4248", "664", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("4249", "664", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("4250", "664", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("4251", "664", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4252", "664", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("4253", "664", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("4254", "664", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("4255", "664", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("4256", "664", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("4257", "664", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("4261", "666", "cs_post_video_source", "youtube");
INSERT INTO `wp_postmeta` VALUES("4262", "666", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("4263", "666", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("4264", "666", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("4265", "666", "cs_post_video_youtube", "https://www.youtube.com/watch?v=PjGkVCAo8Fw");
INSERT INTO `wp_postmeta` VALUES("4266", "666", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4267", "666", "cs_post_video_height", "400px");
INSERT INTO `wp_postmeta` VALUES("4268", "666", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("4269", "666", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("4270", "666", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("4271", "666", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("4272", "666", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("4273", "666", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("4274", "666", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("4275", "666", "price", "");
INSERT INTO `wp_postmeta` VALUES("4276", "666", "value", "");
INSERT INTO `wp_postmeta` VALUES("4277", "666", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("4278", "666", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("4279", "666", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("4280", "666", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("4281", "666", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("4282", "666", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("4283", "666", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("4284", "666", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("4285", "666", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("4286", "666", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("4287", "666", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("4288", "666", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("4289", "666", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("4290", "666", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("4291", "666", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("4292", "666", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("4293", "666", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("4294", "666", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("4295", "666", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("4296", "666", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("4297", "666", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("4298", "666", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("4299", "666", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("4300", "666", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4301", "666", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("4302", "666", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("4303", "666", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("4304", "666", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4305", "666", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("4306", "666", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("4307", "666", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("4308", "666", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("4309", "666", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("4310", "666", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("4311", "666", "_edit_lock", "1452614439:1");
INSERT INTO `wp_postmeta` VALUES("4334", "657", "_nectar_love", "1");
INSERT INTO `wp_postmeta` VALUES("4335", "666", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("4336", "664", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("4337", "662", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("4338", "635", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("4339", "669", "_wp_attached_file", "2015/01/PostPage-Style1.jpg");
INSERT INTO `wp_postmeta` VALUES("4340", "669", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:708;s:4:\"file\";s:27:\"2015/01/PostPage-Style1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"PostPage-Style1-1024x495.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:27:\"PostPage-Style1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"PostPage-Style1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4877", "635", "cs_title_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4878", "635", "cs_subtitle_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4793", "742", "_wp_attached_file", "2015/01/post31.jpg");
INSERT INTO `wp_postmeta` VALUES("4789", "635", "cs_post_subtitle", "Post Sub Heading");
INSERT INTO `wp_postmeta` VALUES("4794", "742", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:673;s:6:\"height\";i:450;s:4:\"file\";s:18:\"2015/01/post31.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"post31-150x150.jpg\";s:5:\"width\";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:\"post31-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"post31-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"post31-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"post31-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"post31-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"post31-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"post31-673x400.jpg\";s:5:\"width\";i:673;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"post31-673x441.jpg\";s:5:\"width\";i:673;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"post31-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4792", "657", "cs_post_subtitle", "Post Sub Heading");
INSERT INTO `wp_postmeta` VALUES("4797", "664", "cs_post_subtitle", "Post Sub Heading");
INSERT INTO `wp_postmeta` VALUES("4870", "633", "cs_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("4869", "633", "cs_title_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4868", "633", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("4888", "780", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:20:\"2014/12/42dcc5ea.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"42dcc5ea-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"42dcc5ea-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4889", "781", "_wp_attached_file", "2014/12/42dcc5ea1.jpg");
INSERT INTO `wp_postmeta` VALUES("4890", "781", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:21:\"2014/12/42dcc5ea1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"42dcc5ea1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"42dcc5ea1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"400x420_c\";i:1;s:9:\"400x465_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("4891", "782", "_wp_attached_file", "2014/12/42dcc5ea2.jpg");
INSERT INTO `wp_postmeta` VALUES("4892", "782", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:21:\"2014/12/42dcc5ea2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"42dcc5ea2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"42dcc5ea2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"400x420_c\";i:1;s:9:\"400x465_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("4893", "783", "_wp_attached_file", "2014/12/42dcc5ea3.jpg");
INSERT INTO `wp_postmeta` VALUES("4894", "783", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:21:\"2014/12/42dcc5ea3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"42dcc5ea3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"42dcc5ea3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"400x420_c\";i:1;s:9:\"400x465_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("4897", "785", "_wp_attached_file", "2014/12/42dcc5ea5.jpg");
INSERT INTO `wp_postmeta` VALUES("4898", "785", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:21:\"2014/12/42dcc5ea5.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"42dcc5ea5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"42dcc5ea5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"400x420_c\";i:1;s:9:\"400x465_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("4899", "786", "_wp_attached_file", "2014/12/42dcc5ea6.jpg");
INSERT INTO `wp_postmeta` VALUES("4900", "786", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:21:\"2014/12/42dcc5ea6.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"42dcc5ea6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"42dcc5ea6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"400x420_c\";i:1;s:9:\"400x465_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("4901", "787", "_wp_attached_file", "2014/12/42dcc5ea7.jpg");
INSERT INTO `wp_postmeta` VALUES("4902", "787", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:21:\"2014/12/42dcc5ea7.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"42dcc5ea7-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"42dcc5ea7-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"400x420_c\";i:1;s:9:\"400x465_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("5322", "856", "_wp_attached_file", "2014/12/headshot1.png");
INSERT INTO `wp_postmeta` VALUES("5323", "856", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2014/12/headshot1.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot1-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"headshot1-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"headshot1-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"headshot1-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"headshot1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"headshot1-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"headshot1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"headshot1-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"headshot1-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5340", "862", "_wp_attached_file", "2014/12/citybg-1.jpg");
INSERT INTO `wp_postmeta` VALUES("5341", "862", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1125;s:4:\"file\";s:20:\"2014/12/citybg-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"citybg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"citybg-1-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"citybg-1-1024x786.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:786;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"citybg-1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"citybg-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"citybg-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"citybg-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"citybg-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"citybg-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"citybg-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"citybg-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("4925", "666", "cs_post_subtitle", "Post Sub Heading");
INSERT INTO `wp_postmeta` VALUES("4926", "666", "cs_title_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("4927", "666", "cs_subtitle_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("4934", "239", "_nectar_love", "1");
INSERT INTO `wp_postmeta` VALUES("4932", "657", "cs_title_color", "");
INSERT INTO `wp_postmeta` VALUES("4933", "657", "cs_subtitle_color", "#f7ece2");
INSERT INTO `wp_postmeta` VALUES("4935", "18", "cs_page_title_engle", "0");
INSERT INTO `wp_postmeta` VALUES("4936", "18", "cs_page_title_engle_style", "2");
INSERT INTO `wp_postmeta` VALUES("4937", "18", "cs_page_title_engle_height", "150px");
INSERT INTO `wp_postmeta` VALUES("4938", "18", "cs_page_title_engle_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("4982", "836", "cs_post_quote", "Design is a plan for arranging elements in such a way as best to accomplish a particular purpose.");
INSERT INTO `wp_postmeta` VALUES("4981", "836", "cs_post_quote_type", "custom");
INSERT INTO `wp_postmeta` VALUES("4980", "836", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("4979", "836", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("4978", "836", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("4976", "836", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("4977", "836", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("4975", "836", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("4974", "836", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("4973", "836", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("4972", "836", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("4971", "836", "cs_post_subtitle", "Aliquam faucibus mliquam faucibus");
INSERT INTO `wp_postmeta` VALUES("5024", "839", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("4967", "836", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("4968", "836", "_edit_lock", "1452614351:1");
INSERT INTO `wp_postmeta` VALUES("5025", "839", "_edit_lock", "1473649037:1");
INSERT INTO `wp_postmeta` VALUES("4983", "836", "cs_post_author", "Charles Eames");
INSERT INTO `wp_postmeta` VALUES("4984", "836", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("4985", "836", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("4986", "836", "cs_title_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("4987", "836", "cs_subtitle_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("4988", "836", "price", "");
INSERT INTO `wp_postmeta` VALUES("4989", "836", "value", "");
INSERT INTO `wp_postmeta` VALUES("4990", "836", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("4991", "836", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("4992", "836", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("4993", "836", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("4994", "836", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("4995", "836", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("4996", "836", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("4997", "836", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("4998", "836", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("4999", "836", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("5000", "836", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("5001", "836", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("5002", "836", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("5003", "836", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("5004", "836", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("5005", "836", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("5006", "836", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("5007", "836", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("5008", "836", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("5009", "836", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("5010", "836", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("5011", "836", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("5012", "836", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("5013", "836", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("5014", "836", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("5015", "836", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("5016", "836", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("5017", "836", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("5018", "836", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("5019", "836", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("5020", "836", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("5021", "836", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("5022", "836", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("5023", "836", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("5096", "841", "_wp_attached_file", "2015/01/user-admin.png");
INSERT INTO `wp_postmeta` VALUES("5028", "839", "cs_post_subtitle", "Listen to the sounds of the earth");
INSERT INTO `wp_postmeta` VALUES("5029", "839", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("5030", "839", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("5031", "839", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("5032", "839", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("5033", "839", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("5034", "839", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("5035", "839", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("5036", "839", "cs_post_audio_type", "mp3");
INSERT INTO `wp_postmeta` VALUES("5037", "839", "cs_post_audio_url", "http://demo.cmssuperheroes.com/Wordpress/wp-nuvo/demo-audio.mp3");
INSERT INTO `wp_postmeta` VALUES("5038", "839", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("5039", "839", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("5040", "839", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("5041", "839", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("5042", "839", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("5043", "839", "cs_title_color", "");
INSERT INTO `wp_postmeta` VALUES("5044", "839", "cs_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("5045", "839", "price", "");
INSERT INTO `wp_postmeta` VALUES("5046", "839", "value", "");
INSERT INTO `wp_postmeta` VALUES("5047", "839", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("5048", "839", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("5049", "839", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("5050", "839", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("5051", "839", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("5052", "839", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("5053", "839", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("5054", "839", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("5055", "839", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("5056", "839", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("5057", "839", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("5058", "839", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("5059", "839", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("5060", "839", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("5061", "839", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("5062", "839", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("5063", "839", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("5064", "839", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("5065", "839", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("5066", "839", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("5067", "839", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("5068", "839", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("5069", "839", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("5070", "839", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("5071", "839", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("5072", "839", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("5073", "839", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("5074", "839", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("5075", "839", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("5076", "839", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("5077", "839", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("5078", "839", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("5079", "839", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("5080", "839", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("5093", "666", "cs_post_title_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("5083", "839", "cs_post_title_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("5084", "839", "cs_post_subtitle_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("5085", "839", "cs_post_breadcrumb_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("5097", "841", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:33;s:6:\"height\";i:36;s:4:\"file\";s:22:\"2015/01/user-admin.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5088", "836", "cs_post_title_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("5089", "836", "cs_post_subtitle_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("5090", "836", "cs_post_breadcrumb_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("5094", "666", "cs_post_subtitle_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("5095", "666", "cs_post_breadcrumb_color", "#222222");
INSERT INTO `wp_postmeta` VALUES("53688", "841", "_wp_attachment_wp_user_avatar", "1");
INSERT INTO `wp_postmeta` VALUES("5115", "635", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("5116", "635", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("5117", "635", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("5327", "858", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2014/12/headshot4.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot4-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"headshot4-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"headshot4-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"headshot4-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"headshot4-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"headshot4-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"headshot4-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"headshot4-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"headshot4-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5326", "858", "_wp_attached_file", "2014/12/headshot4.png");
INSERT INTO `wp_postmeta` VALUES("5325", "857", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2014/12/headshot2.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot2-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"headshot2-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"headshot2-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"headshot2-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"headshot2-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"headshot2-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"headshot2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"headshot2-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"headshot2-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5317", "635", "cs_post_enable_thumbnail", "1");
INSERT INTO `wp_postmeta` VALUES("5315", "635", "cs_post_custom_setting", "1");
INSERT INTO `wp_postmeta` VALUES("5308", "839", "cs_post_page_title", "1");
INSERT INTO `wp_postmeta` VALUES("5307", "839", "cs_post_page_title_custom", "1");
INSERT INTO `wp_postmeta` VALUES("5305", "839", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("5306", "839", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("5290", "657", "cs_post_breadcrumb_color", "#13151c");
INSERT INTO `wp_postmeta` VALUES("5289", "657", "cs_post_subtitle_color", "#13151c");
INSERT INTO `wp_postmeta` VALUES("5288", "657", "cs_post_title_color", "#13151c");
INSERT INTO `wp_postmeta` VALUES("5463", "657", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("5464", "657", "cs_post_title_bg_image", "15967");
INSERT INTO `wp_postmeta` VALUES("5465", "657", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("5287", "657", "cs_post_page_title", "1");
INSERT INTO `wp_postmeta` VALUES("5466", "657", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("5467", "657", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("5468", "657", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("5286", "657", "cs_post_page_title_custom", "1");
INSERT INTO `wp_postmeta` VALUES("53919", "17768", "_wp_attached_file", "2015/01/nicoandlalablog.jpg");
INSERT INTO `wp_postmeta` VALUES("5282", "238", "_nectar_love", "1");
INSERT INTO `wp_postmeta` VALUES("5316", "635", "cs_post_enable_title", "1");
INSERT INTO `wp_postmeta` VALUES("5304", "839", "cs_post_custom_setting", "1");
INSERT INTO `wp_postmeta` VALUES("5296", "657", "cs_post_enable_thumbnail", "0");
INSERT INTO `wp_postmeta` VALUES("37115", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37116", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37117", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("5295", "657", "cs_post_enable_title", "0");
INSERT INTO `wp_postmeta` VALUES("37118", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37119", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37120", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("5285", "657", "cs_post_custom_setting", "1");
INSERT INTO `wp_postmeta` VALUES("5277", "635", "cs_post_page_title", "0");
INSERT INTO `wp_postmeta` VALUES("5276", "635", "cs_post_page_title_custom", "1");
INSERT INTO `wp_postmeta` VALUES("5328", "859", "_wp_attached_file", "2014/12/headshot3.png");
INSERT INTO `wp_postmeta` VALUES("5329", "859", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2014/12/headshot3.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot3-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"headshot3-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"headshot3-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"headshot3-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"headshot3-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"headshot3-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"headshot3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"headshot3-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"headshot3-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5330", "860", "_wp_attached_file", "2014/12/headshot6.png");
INSERT INTO `wp_postmeta` VALUES("5331", "860", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2014/12/headshot6.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot6-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"headshot6-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"headshot6-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"headshot6-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"headshot6-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"headshot6-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"headshot6-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"headshot6-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"headshot6-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5332", "861", "_wp_attached_file", "2014/12/headshot5.png");
INSERT INTO `wp_postmeta` VALUES("5333", "861", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:478;s:4:\"file\";s:21:\"2014/12/headshot5.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"headshot5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"headshot5-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"headshot5-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"headshot5-400x272.png\";s:5:\"width\";i:400;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"headshot5-400x295.png\";s:5:\"width\";i:400;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"headshot5-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"headshot5-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"headshot5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"headshot5-400x441.png\";s:5:\"width\";i:400;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"headshot5-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5360", "885", "_wp_attached_file", "2015/01/MasterSlide2.jpg");
INSERT INTO `wp_postmeta` VALUES("5361", "885", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:713;s:4:\"file\";s:24:\"2015/01/MasterSlide2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-150x150.jpg\";s:5:\"width\";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:\"MasterSlide2-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"MasterSlide2-1024x498.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"MasterSlide2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5406", "910", "_wp_attached_file", "2014/12/antlers.jpg");
INSERT INTO `wp_postmeta` VALUES("5407", "910", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:784;s:4:\"file\";s:19:\"2014/12/antlers.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"antlers-150x150.jpg\";s:5:\"width\";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:\"antlers-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"antlers-1024x502.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"antlers-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"antlers-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"antlers-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"antlers-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"antlers-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"antlers-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"antlers-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"antlers-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("5385", "18", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("5386", "18", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("5387", "18", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("5388", "18", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("5389", "18", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("5390", "18", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("5391", "18", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("5392", "18", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("5393", "18", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5394", "18", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5395", "18", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5396", "18", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5397", "18", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("5398", "18", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("5399", "18", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("5400", "18", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("5401", "18", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10208", "1182", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:23:\"2015/01/Portfolio12.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio12-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio12-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio12-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio12-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio12-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio12-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio12-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio12-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10207", "1182", "_wp_attached_file", "2015/01/Portfolio12.jpg");
INSERT INTO `wp_postmeta` VALUES("5469", "657", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("5470", "657", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("5471", "657", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("5472", "657", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("5473", "657", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5474", "657", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5475", "657", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5476", "657", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5477", "657", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("5478", "657", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("5479", "657", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("5480", "657", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("5481", "657", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("5484", "239", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("5485", "239", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("5486", "239", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("5487", "239", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("5488", "239", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("5489", "239", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("5490", "239", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("5491", "239", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("5492", "239", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5493", "239", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5494", "239", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5495", "239", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("5496", "239", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("5497", "239", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("5498", "239", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("5499", "239", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("5500", "239", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("5501", "239", "cs_post_subtitle", "A stunning project delivered with style");
INSERT INTO `wp_postmeta` VALUES("5502", "242", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("5503", "241", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("5504", "239", "cs_portfolio_about_project", "Beautiful Brand Development");
INSERT INTO `wp_postmeta` VALUES("5505", "239", "cs_testimonial_category", "54,5,55");
INSERT INTO `wp_postmeta` VALUES("5506", "239", "cs_portfolio_gallery", "<p>[gallery link=\"none\" columns=\"1\" ids=\"1781,1783\"]</p>\r\n");
INSERT INTO `wp_postmeta` VALUES("5507", "239", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("5508", "239", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("5509", "239", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("40679", "16720", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:38:\"WP EXO Theme <wordpress@192.168.1.110>\";s:4:\"body\";s:116:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("11041", "239", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11042", "239", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("5646", "239", "cs_portfolio_category", "6");
INSERT INTO `wp_postmeta` VALUES("9925", "1148", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:783;s:4:\"file\";s:22:\"2015/01/polygonbg2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"polygonbg2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"polygonbg2-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"polygonbg2-1024x501.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"polygonbg2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"polygonbg2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"polygonbg2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"polygonbg2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"polygonbg2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"polygonbg2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"polygonbg2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"polygonbg2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("9924", "1148", "_wp_attached_file", "2015/01/polygonbg2.jpg");
INSERT INTO `wp_postmeta` VALUES("50804", "17514", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("50803", "17514", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("50802", "17514", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("50801", "17514", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("50862", "17514", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50799", "17514", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("50798", "17514", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("50797", "17514", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("50796", "17514", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("50795", "17514", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("50794", "17514", "_menu_item_object_id", "17503");
INSERT INTO `wp_postmeta` VALUES("50793", "17514", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("50792", "17514", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("50791", "17513", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("50790", "17513", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("50789", "17513", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50788", "17513", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51746", "17593", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("48141", "17274", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("12994", "1466", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("12993", "1466", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("12992", "1466", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}");
INSERT INTO `wp_postmeta` VALUES("12991", "1466", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:57:\"WP Spectrum <wordpress@demo.cmssuperheroes.com/Wordpress>\";s:4:\"body\";s:143:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("12990", "1466", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:57:\"[your-name] <wordpress@demo.cmssuperheroes.com/Wordpress>\";s:4:\"body\";s:201:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("12989", "1466", "_form", "<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\n		[text* name placeholder \"Name *\"]\n	</div>\n        <div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\n		[email* email  placeholder \"E-mail *\"]\n	</div>\n        <div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\n		[text* subject placeholder \"Subject\"]\n	</div>\n</div>\n<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n		[textarea* message placeholder \"Message *\"]\n	</div>\n</div>\n<div class=\"row\">\n      <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\n             [submit class:btn class:btn-default-alt class:size-default \"Submit\"]\n      </div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("12988", "1465", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("12987", "1465", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("12986", "1465", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:31:\"Please fill the required field.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}");
INSERT INTO `wp_postmeta` VALUES("12985", "1465", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:57:\"WP Spectrum <wordpress@demo.cmssuperheroes.com/Wordpress>\";s:4:\"body\";s:143:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("12984", "1465", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:57:\"[your-name] <wordpress@demo.cmssuperheroes.com/Wordpress>\";s:4:\"body\";s:196:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP Spectrum (https://themeforest.net/user/pl_theme/portfolio)\";s:9:\"recipient\";s:19:\"phuongk3a@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("12983", "1465", "_form", "<p><label>Name *</label>    [text* your-name] </p>\n\n<p><label>Email * </label>    [email* your-email] </p>\n\n<p><label>Subject *</label>      [text your-subject] </p>\n\n<p><label>Message *</label>     [textarea your-message] </p>\n\n<p>[submit class:btn class:btn-default-alt class:size-default \"Submit\"]</p>");
INSERT INTO `wp_postmeta` VALUES("7201", "1003", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7200", "1003", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7199", "1003", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7198", "1003", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7197", "1003", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7196", "1003", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7195", "1003", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7194", "1003", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7193", "1003", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("9116", "1124", "_wp_attached_file", "2014/12/Portfolio7.jpg");
INSERT INTO `wp_postmeta` VALUES("9119", "1125", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:22:\"2014/12/Portfolio8.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Portfolio8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Portfolio8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Portfolio8-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"Portfolio8-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Portfolio8-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Portfolio8-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Portfolio8-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"Portfolio8-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"Portfolio8-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Portfolio8-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("9118", "1125", "_wp_attached_file", "2014/12/Portfolio8.jpg");
INSERT INTO `wp_postmeta` VALUES("7219", "1007", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7220", "1007", "_edit_lock", "1452614247:1");
INSERT INTO `wp_postmeta` VALUES("53497", "1007", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("7222", "1007", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7223", "1007", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7224", "1007", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7225", "1007", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7226", "1007", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7227", "1007", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7228", "1007", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7229", "1007", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7230", "1007", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7231", "1007", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7232", "1007", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7233", "1007", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7234", "1007", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7235", "1007", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7236", "1007", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7237", "1007", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7238", "1007", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7239", "1007", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7240", "1007", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7241", "1007", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7242", "1007", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7243", "1007", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7244", "1007", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7245", "1007", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7246", "1007", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7247", "1007", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7248", "1007", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7249", "1007", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7250", "1007", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7251", "1007", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7252", "1007", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7253", "1007", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7254", "1007", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7255", "1007", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7256", "1007", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7257", "1007", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7260", "1007", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7263", "1007", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53492", "1007", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53493", "1007", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53494", "1007", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53495", "1007", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53496", "1007", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53490", "1007", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53491", "1007", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53489", "1007", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53488", "1007", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53487", "1007", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53486", "1007", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53485", "1007", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53484", "1007", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53483", "1007", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53482", "1007", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53481", "1007", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53480", "1007", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53479", "1007", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53478", "1007", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53477", "1007", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53476", "1007", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53475", "1007", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53474", "1007", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53473", "1007", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53472", "1007", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53471", "1007", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53470", "1007", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("48543", "17416", "_wp_attached_file", "2015/01/portfolio-123.jpg");
INSERT INTO `wp_postmeta` VALUES("7267", "1011", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7268", "1011", "_edit_lock", "1452614219:1");
INSERT INTO `wp_postmeta` VALUES("7269", "1011", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7270", "1011", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7271", "1011", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7272", "1011", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7273", "1011", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7274", "1011", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7275", "1011", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7276", "1011", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7277", "1011", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7278", "1011", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7279", "1011", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7280", "1011", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7281", "1011", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7282", "1011", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7283", "1011", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7284", "1011", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7285", "1011", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7286", "1011", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7287", "1011", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7288", "1011", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7289", "1011", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7290", "1011", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7291", "1011", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7292", "1011", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7293", "1011", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7294", "1011", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7295", "1011", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7296", "1011", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7297", "1011", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7298", "1011", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7299", "1011", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7300", "1011", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7301", "1011", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7302", "1011", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7303", "1011", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7304", "1011", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7307", "1011", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7310", "1011", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("48546", "17418", "_wp_attached_file", "2015/01/portfolio-11.jpg");
INSERT INTO `wp_postmeta` VALUES("7314", "1015", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7315", "1015", "_edit_lock", "1452614223:1");
INSERT INTO `wp_postmeta` VALUES("7316", "1015", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7317", "1015", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7318", "1015", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7319", "1015", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7320", "1015", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7321", "1015", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7322", "1015", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7323", "1015", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7324", "1015", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7325", "1015", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7326", "1015", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7327", "1015", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7328", "1015", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7329", "1015", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7330", "1015", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7331", "1015", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7332", "1015", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7333", "1015", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7334", "1015", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7335", "1015", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7336", "1015", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7337", "1015", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7338", "1015", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7339", "1015", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7340", "1015", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7341", "1015", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7342", "1015", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7343", "1015", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7344", "1015", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7345", "1015", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7346", "1015", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7347", "1015", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7348", "1015", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7349", "1015", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7350", "1015", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7351", "1015", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7354", "1015", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7357", "1015", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("48534", "17404", "_wp_attached_file", "2015/01/portfolio-12.jpg");
INSERT INTO `wp_postmeta` VALUES("7361", "1019", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7362", "1019", "_edit_lock", "1452614244:1");
INSERT INTO `wp_postmeta` VALUES("7363", "1019", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7364", "1019", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7365", "1019", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7366", "1019", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7367", "1019", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7368", "1019", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7369", "1019", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7370", "1019", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7371", "1019", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7372", "1019", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7373", "1019", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7374", "1019", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7375", "1019", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7376", "1019", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7377", "1019", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7378", "1019", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7379", "1019", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7380", "1019", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7381", "1019", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7382", "1019", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7383", "1019", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7384", "1019", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7385", "1019", "_wp_old_slug", "what-a-great-skyline");
INSERT INTO `wp_postmeta` VALUES("7386", "1019", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7387", "1019", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7388", "1019", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7389", "1019", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7390", "1019", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7391", "1019", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7392", "1019", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7393", "1019", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7394", "1019", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7395", "1019", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7396", "1019", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7397", "1019", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7398", "1019", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7399", "1019", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7402", "1019", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7405", "1019", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53340", "1031", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53339", "1031", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53309", "1031", "price", "");
INSERT INTO `wp_postmeta` VALUES("53310", "1031", "value", "");
INSERT INTO `wp_postmeta` VALUES("53311", "1031", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53312", "1031", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53313", "1031", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53314", "1031", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53315", "1031", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53316", "1031", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53317", "1031", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53318", "1031", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53319", "1031", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53320", "1031", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53321", "1031", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53322", "1031", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53323", "1031", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53324", "1031", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53325", "1031", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53326", "1031", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53327", "1031", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53328", "1031", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53329", "1031", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53330", "1031", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53331", "1031", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53332", "1031", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53333", "1031", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53334", "1031", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53335", "1031", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53336", "1031", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53337", "1031", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53338", "1031", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("48628", "17421", "_wp_attached_file", "2015/01/portfolio-9.jpg");
INSERT INTO `wp_postmeta` VALUES("7409", "1023", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7410", "1023", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7411", "1023", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7412", "1023", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7413", "1023", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7414", "1023", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7415", "1023", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7416", "1023", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7417", "1023", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7418", "1023", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7419", "1023", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7420", "1023", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7421", "1023", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7422", "1023", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7423", "1023", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7424", "1023", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7425", "1023", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7426", "1023", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7427", "1023", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7428", "1023", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7429", "1023", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7430", "1023", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7431", "1023", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7432", "1023", "_edit_lock", "1452614195:1");
INSERT INTO `wp_postmeta` VALUES("7433", "1023", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7434", "1023", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7435", "1023", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7436", "1023", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7437", "1023", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7438", "1023", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7439", "1023", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7440", "1023", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7441", "1023", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7442", "1023", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7443", "1023", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7444", "1023", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7445", "1023", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7446", "1023", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7449", "1023", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7452", "1023", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("7456", "1027", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7457", "1027", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7458", "1027", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7459", "1027", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7460", "1027", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7461", "1027", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7462", "1027", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7463", "1027", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7464", "1027", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7465", "1027", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7466", "1027", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7467", "1027", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7468", "1027", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7469", "1027", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7470", "1027", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7471", "1027", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7472", "1027", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7473", "1027", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7474", "1027", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7475", "1027", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7476", "1027", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7477", "1027", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7478", "1027", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7479", "1027", "_edit_lock", "1452614215:1");
INSERT INTO `wp_postmeta` VALUES("7480", "1027", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7481", "1027", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7482", "1027", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7483", "1027", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7484", "1027", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7485", "1027", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7486", "1027", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7487", "1027", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7488", "1027", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7489", "1027", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7490", "1027", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7491", "1027", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7492", "1027", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7493", "1027", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7496", "1027", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7499", "1027", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("52770", "17705", "_wp_attached_file", "2015/01/portfolio-6.jpg");
INSERT INTO `wp_postmeta` VALUES("7503", "1031", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7504", "1031", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7505", "1031", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7506", "1031", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7507", "1031", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7508", "1031", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7509", "1031", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7510", "1031", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7511", "1031", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7512", "1031", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7513", "1031", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7514", "1031", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7515", "1031", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7516", "1031", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7517", "1031", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7518", "1031", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7519", "1031", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7520", "1031", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7521", "1031", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7522", "1031", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7523", "1031", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7524", "1031", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7525", "1031", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7526", "1031", "_edit_lock", "1452614191:1");
INSERT INTO `wp_postmeta` VALUES("7527", "1031", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7528", "1031", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7529", "1031", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7530", "1031", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7531", "1031", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7532", "1031", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7533", "1031", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7534", "1031", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7535", "1031", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7536", "1031", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7537", "1031", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7538", "1031", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7539", "1031", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7540", "1031", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7543", "1031", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7546", "1031", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53271", "1047", "price", "");
INSERT INTO `wp_postmeta` VALUES("53272", "1047", "value", "");
INSERT INTO `wp_postmeta` VALUES("53273", "1047", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53274", "1047", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53275", "1047", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53276", "1047", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53277", "1047", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53278", "1047", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53279", "1047", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53280", "1047", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53281", "1047", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53282", "1047", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53283", "1047", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53284", "1047", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53285", "1047", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53286", "1047", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53287", "1047", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53288", "1047", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53289", "1047", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53290", "1047", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53291", "1047", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53292", "1047", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53293", "1047", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53294", "1047", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53295", "1047", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53296", "1047", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53297", "1047", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53298", "1047", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53299", "1047", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53300", "1047", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53301", "1047", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53302", "1047", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53303", "1047", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53304", "1047", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53305", "1047", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53306", "1047", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53307", "1047", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53308", "1031", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53341", "1031", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53342", "1031", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53547", "662", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53542", "666", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53543", "662", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53544", "662", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53545", "662", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53568", "633", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53567", "633", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53566", "633", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53565", "627", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53564", "627", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53563", "627", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53562", "627", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53561", "627", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53560", "627", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53559", "627", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53558", "623", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53557", "623", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53556", "623", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53555", "623", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53554", "623", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53553", "623", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53552", "623", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53551", "664", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53550", "664", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53549", "662", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53548", "662", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("7691", "1047", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("7692", "1047", "_edit_lock", "1452650151:1");
INSERT INTO `wp_postmeta` VALUES("7693", "1047", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("7694", "1047", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("7695", "1047", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("7696", "1047", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("7697", "1047", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("7698", "1047", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("7699", "1047", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("7700", "1047", "eg_settings_type", "default");
INSERT INTO `wp_postmeta` VALUES("7701", "1047", "eg_settings_custom_display", "html5");
INSERT INTO `wp_postmeta` VALUES("7702", "1047", "velocity_sidebar", "Blog Sidebar");
INSERT INTO `wp_postmeta` VALUES("7703", "1047", "velocity_sidebar_orientation", "right");
INSERT INTO `wp_postmeta` VALUES("7704", "1047", "velocity_custom_background_type", "tiled");
INSERT INTO `wp_postmeta` VALUES("7705", "1047", "velocity_post_type", "image");
INSERT INTO `wp_postmeta` VALUES("7706", "1047", "velocity_video_width", "640");
INSERT INTO `wp_postmeta` VALUES("7707", "1047", "velocity_video_height", "360");
INSERT INTO `wp_postmeta` VALUES("7709", "1047", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("7710", "1047", "template_id", "0");
INSERT INTO `wp_postmeta` VALUES("7711", "1047", "showbiz_excerpt_limit", "");
INSERT INTO `wp_postmeta` VALUES("7712", "1047", "youtube_id", "");
INSERT INTO `wp_postmeta` VALUES("7713", "1047", "vimeo_id", "");
INSERT INTO `wp_postmeta` VALUES("7714", "1047", "showbiz_color", "");
INSERT INTO `wp_postmeta` VALUES("7715", "1047", "showbiz_price", "");
INSERT INTO `wp_postmeta` VALUES("7716", "1047", "_wp_old_slug", "if-you-want-to-make-god-laugh-tell-him-about-your-plans");
INSERT INTO `wp_postmeta` VALUES("7717", "1047", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7718", "1047", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7719", "1047", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("7720", "1047", "eg_settings_custom_meta_skin", "a:1:{i:0;s:2:\"33\";}");
INSERT INTO `wp_postmeta` VALUES("7721", "1047", "eg_settings_custom_meta_element", "a:1:{i:0;s:6:\"layout\";}");
INSERT INTO `wp_postmeta` VALUES("7722", "1047", "eg_settings_custom_meta_setting", "a:1:{i:0;s:14:\"cover-bg-color\";}");
INSERT INTO `wp_postmeta` VALUES("7723", "1047", "eg_settings_custom_meta_style", "a:1:{i:0;s:7:\"#FFFFFF\";}");
INSERT INTO `wp_postmeta` VALUES("7724", "1047", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("7725", "1047", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("7726", "1047", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("7727", "1047", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("7728", "1047", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("7729", "1047", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("7730", "1047", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("7733", "1047", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("7736", "1047", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53546", "662", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53569", "633", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53570", "633", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53571", "633", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53572", "633", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53573", "630", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53574", "630", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53575", "630", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53604", "17737", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:658;s:4:\"file\";s:18:\"2014/01/post-9.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"post-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"post-9-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"post-9-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:\"post-9-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:18:\"post-9-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("53602", "17736", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:396;s:4:\"file\";s:15:\"2016/01/404.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"404-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:15:\"404-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("53601", "17736", "_wp_attached_file", "2016/01/404.jpg");
INSERT INTO `wp_postmeta` VALUES("53600", "629", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53599", "629", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53598", "629", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53597", "629", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53541", "666", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53540", "836", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53539", "836", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53538", "385", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53537", "385", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53536", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53535", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53534", "1332", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53533", "1332", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53469", "1007", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53468", "1007", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53467", "1007", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53466", "1007", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53465", "1007", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53464", "1007", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53463", "1007", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53462", "1007", "value", "");
INSERT INTO `wp_postmeta` VALUES("53461", "1007", "price", "");
INSERT INTO `wp_postmeta` VALUES("53460", "1007", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53459", "1015", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53458", "1015", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53457", "1015", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53456", "1015", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53455", "1015", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53454", "1015", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53453", "1015", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53452", "1015", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53451", "1015", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53450", "1015", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53449", "1015", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53448", "1015", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53446", "1015", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53447", "1015", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53445", "1015", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53444", "1015", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53443", "1015", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53442", "1015", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53440", "1015", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53441", "1015", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53438", "1015", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53439", "1015", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53436", "1015", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53437", "1015", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53435", "1015", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53434", "1015", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53433", "1015", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53432", "1015", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53431", "1015", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53430", "1015", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53429", "1015", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53428", "1015", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53424", "1015", "value", "");
INSERT INTO `wp_postmeta` VALUES("53425", "1015", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53426", "1015", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53427", "1015", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("52773", "17707", "_wp_attached_file", "2015/01/portfolio-7.jpg");
INSERT INTO `wp_postmeta` VALUES("52774", "17707", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2015/01/portfolio-7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"portfolio-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"portfolio-7-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"portfolio-7-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:23:\"portfolio-7-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("52775", "1047", "_thumbnail_id", "17707");
INSERT INTO `wp_postmeta` VALUES("53411", "1011", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53410", "1011", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53409", "1011", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53408", "1011", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53407", "1011", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53406", "1011", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53405", "1011", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53404", "1011", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53403", "1011", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53402", "1011", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53401", "1011", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53400", "1011", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53399", "1011", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53398", "1011", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53397", "1011", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53396", "1011", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53395", "1011", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53394", "1011", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53393", "1011", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53392", "1011", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53391", "1011", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53390", "1011", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53389", "1011", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53388", "1011", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53386", "1011", "value", "");
INSERT INTO `wp_postmeta` VALUES("53387", "1011", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53385", "1011", "price", "");
INSERT INTO `wp_postmeta` VALUES("53384", "1011", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53383", "1027", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53381", "1027", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53382", "1027", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53380", "1027", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53379", "1027", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53378", "1027", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53377", "1027", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53376", "1027", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53375", "1027", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53374", "1027", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53373", "1027", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53372", "1027", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53371", "1027", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53370", "1027", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53369", "1027", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53368", "1027", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53270", "1047", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53267", "1003", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53266", "1003", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53265", "1003", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53264", "1003", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53263", "1003", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53262", "1003", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53261", "1003", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53260", "1003", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53259", "1003", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53258", "1003", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53257", "1003", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53256", "1003", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53255", "1003", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53254", "1003", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53253", "1003", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53252", "1003", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53251", "1003", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53250", "1003", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53249", "1003", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53248", "1003", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53247", "1003", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53246", "1003", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53245", "1003", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53243", "1003", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53244", "1003", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53241", "1003", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53242", "1003", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53239", "1003", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53240", "1003", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53238", "1003", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53237", "1003", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53236", "1003", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53235", "1003", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53234", "1003", "value", "");
INSERT INTO `wp_postmeta` VALUES("53233", "1003", "price", "");
INSERT INTO `wp_postmeta` VALUES("53232", "1003", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("8427", "1095", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("8428", "1095", "_edit_lock", "1424193583:1");
INSERT INTO `wp_postmeta` VALUES("8429", "1096", "_wp_attached_file", "2015/01/Portfolio1.jpg");
INSERT INTO `wp_postmeta` VALUES("8430", "1096", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:22:\"2015/01/Portfolio1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Portfolio1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Portfolio1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Portfolio1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"Portfolio1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Portfolio1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Portfolio1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Portfolio1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"Portfolio1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"Portfolio1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Portfolio1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"400x420_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("8432", "1095", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("8433", "1095", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("8434", "1095", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("8435", "1095", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("8436", "1095", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("8437", "1095", "cs_portfolio_category", "50");
INSERT INTO `wp_postmeta` VALUES("8438", "1095", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1812,1811,1810,1809,1807\"]");
INSERT INTO `wp_postmeta` VALUES("8439", "1095", "price", "");
INSERT INTO `wp_postmeta` VALUES("8440", "1095", "value", "");
INSERT INTO `wp_postmeta` VALUES("8441", "1095", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("8442", "1095", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("8443", "1095", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("8444", "1095", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("8445", "1095", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("8446", "1095", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("8447", "1095", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("8448", "1095", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("8449", "1095", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("8450", "1095", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("8451", "1095", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("8452", "1095", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("8453", "1095", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("8454", "1095", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("8455", "1095", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("8456", "1095", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("8457", "1095", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("8458", "1095", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("8459", "1095", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("8460", "1095", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("8461", "1095", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("8462", "1095", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("8463", "1095", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("8464", "1095", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8465", "1095", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("8466", "1095", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("8467", "1095", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("8468", "1095", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8469", "1095", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("8470", "1095", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("8471", "1095", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("8472", "1095", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("8473", "1095", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("8474", "1095", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("8475", "1095", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("8476", "1095", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("8477", "1095", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("8478", "1095", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8479", "1095", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8480", "1095", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("8481", "1095", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("8482", "1095", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("8483", "1095", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8484", "1095", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8485", "1095", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8486", "1095", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8487", "1095", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("8488", "1095", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("8489", "1095", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("8490", "1095", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("8491", "1095", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("8492", "1095", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("8493", "1095", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("8494", "1095", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("8495", "1095", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("8496", "1095", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("8497", "1095", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("8498", "1095", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("8499", "1095", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("8500", "1095", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("8501", "1095", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8502", "1095", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("8503", "1097", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("8504", "1097", "_edit_lock", "1424193615:1");
INSERT INTO `wp_postmeta` VALUES("8508", "1097", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("8509", "1097", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("8510", "1097", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("8511", "1097", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("8512", "1097", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("8513", "1097", "cs_portfolio_category", "6,7");
INSERT INTO `wp_postmeta` VALUES("8514", "1097", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1790,1788\"]");
INSERT INTO `wp_postmeta` VALUES("8515", "1097", "price", "");
INSERT INTO `wp_postmeta` VALUES("8516", "1097", "value", "");
INSERT INTO `wp_postmeta` VALUES("8517", "1097", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("8518", "1097", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("8519", "1097", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("8520", "1097", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("8521", "1097", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("8522", "1097", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("8523", "1097", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("8524", "1097", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("8525", "1097", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("8526", "1097", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("8527", "1097", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("8528", "1097", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("8529", "1097", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("8530", "1097", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("8531", "1097", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("8532", "1097", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("8533", "1097", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("8534", "1097", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("8535", "1097", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("8536", "1097", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("8537", "1097", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("8538", "1097", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("8539", "1097", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("8540", "1097", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8541", "1097", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("8542", "1097", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("8543", "1097", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("8544", "1097", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8545", "1097", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("8546", "1097", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("8547", "1097", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("8548", "1097", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("8549", "1097", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("8550", "1097", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("8551", "1097", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("8552", "1097", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("8553", "1097", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("8554", "1097", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8555", "1097", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8556", "1097", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("8557", "1097", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("8558", "1097", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("8559", "1097", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8560", "1097", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8561", "1097", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8562", "1097", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8563", "1097", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("8564", "1097", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("8565", "1097", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("8566", "1097", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("8567", "1097", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("8568", "1097", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("8569", "1097", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("8570", "1097", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("8571", "1097", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("8572", "1097", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("8573", "1097", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("8574", "1097", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("8575", "1097", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("8576", "1097", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("8577", "1097", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8578", "1099", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("8579", "1099", "_edit_lock", "1425049433:1");
INSERT INTO `wp_postmeta` VALUES("8583", "1099", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("8584", "1099", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("8585", "1099", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("8586", "1099", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("8587", "1099", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("8588", "1099", "cs_portfolio_category", "7");
INSERT INTO `wp_postmeta` VALUES("8589", "1099", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1793,1794,1792\"]");
INSERT INTO `wp_postmeta` VALUES("8590", "1099", "price", "");
INSERT INTO `wp_postmeta` VALUES("8591", "1099", "value", "");
INSERT INTO `wp_postmeta` VALUES("8592", "1099", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("8593", "1099", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("8594", "1099", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("8595", "1099", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("8596", "1099", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("8597", "1099", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("8598", "1099", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("8599", "1099", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("8600", "1099", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("8601", "1099", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("8602", "1099", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("8603", "1099", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("8604", "1099", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("8605", "1099", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("8606", "1099", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("8607", "1099", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("8608", "1099", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("8609", "1099", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("8610", "1099", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("8611", "1099", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("8612", "1099", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("8613", "1099", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("8614", "1099", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("8615", "1099", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8616", "1099", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("8617", "1099", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("8618", "1099", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("8619", "1099", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8620", "1099", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("8621", "1099", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("8622", "1099", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("8623", "1099", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("8624", "1099", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("8625", "1099", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("8626", "1099", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("8627", "1099", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("8628", "1099", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("8629", "1099", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8630", "1099", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8631", "1099", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("8632", "1099", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("8633", "1099", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("8634", "1099", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8635", "1099", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8636", "1099", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8637", "1099", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8638", "1099", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("8639", "1099", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("8640", "1099", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("8641", "1099", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("8642", "1099", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("8643", "1099", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("8644", "1099", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("8645", "1099", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("8646", "1099", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("8647", "1099", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("8648", "1099", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("8649", "1099", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("8650", "1099", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("8651", "1099", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("8652", "1099", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8656", "1102", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("8657", "1102", "_edit_lock", "1424193870:1");
INSERT INTO `wp_postmeta` VALUES("8659", "243", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("8660", "243", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("8661", "243", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("8662", "243", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("8663", "243", "cs_portfolio_category", "6");
INSERT INTO `wp_postmeta` VALUES("8664", "243", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1771,1770,1769\"]");
INSERT INTO `wp_postmeta` VALUES("8665", "243", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("8666", "243", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("8667", "243", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("8668", "243", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8669", "243", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8670", "243", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("8671", "243", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("8672", "243", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("8673", "243", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8674", "243", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8675", "243", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8676", "243", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8677", "243", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("8678", "243", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("8679", "243", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("8680", "243", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("8681", "243", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("8682", "243", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("8683", "243", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("8684", "243", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("8685", "243", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("8686", "243", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("8687", "243", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("8688", "243", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("8689", "243", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("8690", "243", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("8691", "243", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("8692", "1106", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("8693", "1106", "_edit_lock", "1453131150:1");
INSERT INTO `wp_postmeta` VALUES("8694", "1107", "_wp_attached_file", "2015/01/testimonial2.jpg");
INSERT INTO `wp_postmeta` VALUES("8695", "1107", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:24:\"2015/01/testimonial2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"testimonial2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"testimonial2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"testimonial2-250x214.jpg\";s:5:\"width\";i:250;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"testimonial2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"testimonial2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:8:{i:0;s:9:\"170x170_c\";i:1;s:9:\"230x230_c\";i:2;s:9:\"250x250_c\";i:3;s:9:\"310x310_c\";i:4;s:9:\"150x150_c\";i:5;s:9:\"110x110_c\";i:6;s:9:\"180x180_c\";i:7;s:9:\"100x100_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("8696", "1106", "_thumbnail_id", "1107");
INSERT INTO `wp_postmeta` VALUES("8697", "1106", "price", "");
INSERT INTO `wp_postmeta` VALUES("8698", "1106", "value", "");
INSERT INTO `wp_postmeta` VALUES("8699", "1106", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("8700", "1106", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("8701", "1106", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("8702", "1106", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("8703", "1106", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("8704", "1106", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("8705", "1106", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("8706", "1106", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("8707", "1106", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("8708", "1106", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("8709", "1106", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("8710", "1106", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("8711", "1106", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("8712", "1106", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("8713", "1106", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("8714", "1106", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("8715", "1106", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("8716", "1106", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("8717", "1106", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("8718", "1106", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("8719", "1106", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("8720", "1106", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("8721", "1106", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("8722", "1106", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8723", "1106", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("8724", "1106", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("8725", "1106", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("8726", "1106", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8727", "1106", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("8728", "1106", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("8729", "1106", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("8730", "1106", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("8731", "1106", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("8732", "1106", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("8733", "1106", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("8734", "1106", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("8735", "1106", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("8736", "1106", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8737", "1106", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8738", "1106", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("8739", "1106", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("8740", "1106", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("8741", "1106", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8742", "1106", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8743", "1106", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8744", "1106", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8745", "1106", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("8746", "1106", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("8747", "1106", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("8748", "1106", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("8749", "1106", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("8750", "1106", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("8751", "1106", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("8752", "1106", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("8753", "1106", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("8754", "1106", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("8755", "1106", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("8756", "1106", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("8757", "1106", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("8758", "1106", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("8937", "1112", "_wp_attached_file", "2015/01/Team1.jpg");
INSERT INTO `wp_postmeta` VALUES("8938", "1112", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:592;s:6:\"height\";i:589;s:4:\"file\";s:17:\"2015/01/Team1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Team1-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"Team1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"Team1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"Team1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"Team1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"Team1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"Team1-592x400.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"Team1-592x441.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"Team1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:8:{i:0;s:9:\"170x170_c\";i:1;s:9:\"230x230_c\";i:2;s:9:\"250x250_c\";i:3;s:9:\"310x310_c\";i:4;s:9:\"150x150_c\";i:5;s:9:\"110x110_c\";i:6;s:9:\"180x180_c\";i:7;s:9:\"100x100_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("8939", "1109", "_thumbnail_id", "1112");
INSERT INTO `wp_postmeta` VALUES("8940", "1109", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("8941", "1109", "_edit_lock", "1453130654:1");
INSERT INTO `wp_postmeta` VALUES("8942", "1109", "price", "");
INSERT INTO `wp_postmeta` VALUES("8943", "1109", "value", "");
INSERT INTO `wp_postmeta` VALUES("8944", "1109", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("8945", "1109", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("8946", "1109", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("8947", "1109", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("8948", "1109", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("8949", "1109", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("8950", "1109", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("8951", "1109", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("8952", "1109", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("8953", "1109", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("8954", "1109", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("8955", "1109", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("8956", "1109", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("8957", "1109", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("8958", "1109", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("8959", "1109", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("8960", "1109", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("8961", "1109", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("8962", "1109", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("8963", "1109", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("8964", "1109", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("8965", "1109", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("8966", "1109", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("8967", "1109", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8968", "1109", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("8969", "1109", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("8970", "1109", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("8971", "1109", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8972", "1109", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("8973", "1109", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("8974", "1109", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("8975", "1109", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("8976", "1109", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("8977", "1109", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("8978", "1109", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("8979", "1109", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("8980", "1109", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("8981", "1109", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("8982", "1109", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("8983", "1109", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("8984", "1109", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("8985", "1109", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("8986", "1109", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8987", "1109", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8988", "1109", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8989", "1109", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("8990", "1109", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("8991", "1109", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("8992", "1109", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("8993", "1109", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("8994", "1109", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("8995", "1109", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("8996", "1109", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("8997", "1109", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("8998", "1109", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("8999", "1109", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("9000", "1109", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("9001", "1109", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("9002", "1109", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("9003", "1109", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("9004", "1114", "_wp_attached_file", "2015/01/Team2.jpg");
INSERT INTO `wp_postmeta` VALUES("9005", "1114", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:592;s:6:\"height\";i:589;s:4:\"file\";s:17:\"2015/01/Team2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Team2-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"Team2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"Team2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"Team2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"Team2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"Team2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"Team2-592x400.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"Team2-592x441.jpg\";s:5:\"width\";i:592;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"Team2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:8:{i:0;s:9:\"170x170_c\";i:1;s:9:\"230x230_c\";i:2;s:9:\"250x250_c\";i:3;s:9:\"310x310_c\";i:4;s:9:\"150x150_c\";i:5;s:9:\"110x110_c\";i:6;s:9:\"180x180_c\";i:7;s:9:\"100x100_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("9006", "1113", "_thumbnail_id", "1114");
INSERT INTO `wp_postmeta` VALUES("9007", "1113", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("9008", "1113", "_edit_lock", "1453130654:1");
INSERT INTO `wp_postmeta` VALUES("9009", "1113", "price", "");
INSERT INTO `wp_postmeta` VALUES("9010", "1113", "value", "");
INSERT INTO `wp_postmeta` VALUES("9011", "1113", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("9012", "1113", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("9013", "1113", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("9014", "1113", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("9015", "1113", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("9016", "1113", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("9017", "1113", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("9018", "1113", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("9019", "1113", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("9020", "1113", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("9021", "1113", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("9022", "1113", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("9023", "1113", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("9024", "1113", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("9025", "1113", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("9026", "1113", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("9027", "1113", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("9028", "1113", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("9029", "1113", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("9030", "1113", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("9031", "1113", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("9032", "1113", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("9033", "1113", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("9034", "1113", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("9035", "1113", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("9036", "1113", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("9037", "1113", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("9038", "1113", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("9039", "1113", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("9040", "1113", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("9041", "1113", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("9042", "1113", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("9043", "1113", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("9044", "1113", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("9045", "1113", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("9046", "1113", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("9047", "1113", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("9048", "1113", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("9049", "1113", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("9050", "1113", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("9051", "1113", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("9052", "1113", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("9053", "1113", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9054", "1113", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9055", "1113", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9056", "1113", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9057", "1113", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("9058", "1113", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("9059", "1113", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("9060", "1113", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("9061", "1113", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("9062", "1113", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("9063", "1113", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("9064", "1113", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("9065", "1113", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("9066", "1113", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("9067", "1113", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("9068", "1113", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("9069", "1113", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("9070", "1113", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("9073", "1116", "_wp_attached_file", "2014/12/Portfolio4.jpg");
INSERT INTO `wp_postmeta` VALUES("9074", "1116", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:22:\"2014/12/Portfolio4.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Portfolio4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Portfolio4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Portfolio4-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"Portfolio4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Portfolio4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Portfolio4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Portfolio4-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"Portfolio4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"Portfolio4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Portfolio4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("9077", "1119", "_wp_attached_file", "2014/12/Portfolio5.jpg");
INSERT INTO `wp_postmeta` VALUES("9078", "1119", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:22:\"2014/12/Portfolio5.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Portfolio5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Portfolio5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Portfolio5-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"Portfolio5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Portfolio5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Portfolio5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Portfolio5-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"Portfolio5-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"Portfolio5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Portfolio5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("9081", "238", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("9082", "238", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9083", "238", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("9084", "238", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("9085", "238", "cs_portfolio_category", "7");
INSERT INTO `wp_postmeta` VALUES("9086", "238", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1778,1776\"]");
INSERT INTO `wp_postmeta` VALUES("9087", "238", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("9088", "238", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("9089", "238", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("9090", "238", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("9091", "238", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("9092", "238", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("9093", "238", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("9094", "238", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("9095", "238", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9096", "238", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9097", "238", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9098", "238", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9099", "238", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("9100", "238", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("9101", "238", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("9102", "238", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("9103", "238", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("9104", "238", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("9105", "238", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("9106", "238", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("9107", "238", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("9108", "238", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("9109", "238", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("9110", "238", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("9111", "238", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("9112", "238", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("9113", "238", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9114", "1122", "_wp_attached_file", "2014/12/Portfolio6.jpg");
INSERT INTO `wp_postmeta` VALUES("9115", "1122", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:22:\"2014/12/Portfolio6.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Portfolio6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Portfolio6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Portfolio6-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"Portfolio6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"Portfolio6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Portfolio6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Portfolio6-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"Portfolio6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"Portfolio6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Portfolio6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("9299", "240", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9298", "240", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("9300", "240", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("9301", "240", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("9302", "240", "cs_portfolio_category", "8");
INSERT INTO `wp_postmeta` VALUES("9303", "240", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1806,1804,1803\"]");
INSERT INTO `wp_postmeta` VALUES("9304", "240", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("9305", "240", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("9306", "240", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("9307", "240", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("9308", "240", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("9309", "240", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("9310", "240", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("9311", "240", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("9312", "240", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9313", "240", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9314", "240", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9315", "240", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9316", "240", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("9317", "240", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("9318", "240", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("9319", "240", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("9320", "240", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("9321", "240", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("9322", "240", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("9323", "240", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("9324", "240", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("9325", "240", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("9326", "240", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("9327", "240", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("9328", "240", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("9329", "240", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("9330", "240", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("9533", "242", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("9534", "242", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9535", "242", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("9536", "242", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("9537", "242", "cs_portfolio_category", "6");
INSERT INTO `wp_postmeta` VALUES("9538", "242", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1841,1839\"]");
INSERT INTO `wp_postmeta` VALUES("9539", "242", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("9540", "242", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("9541", "242", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("9542", "242", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("9543", "242", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("9544", "242", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("9545", "242", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("9546", "242", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("9547", "242", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9548", "242", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9549", "242", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9550", "242", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9551", "242", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("9552", "242", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("9553", "242", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("9554", "242", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("9555", "242", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("9556", "242", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("9557", "242", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("9558", "242", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("9559", "242", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("9560", "242", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("9561", "242", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("9562", "242", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("9563", "242", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("9564", "242", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("9565", "242", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("12467", "1213", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("10138", "1156", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:23:\"2014/12/Portfolio10.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio10-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio10-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio10-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio10-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio10-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio10-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio10-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio10-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10137", "1156", "_wp_attached_file", "2014/12/Portfolio10.jpg");
INSERT INTO `wp_postmeta` VALUES("9926", "241", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("9927", "241", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("9928", "241", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("9929", "241", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("9930", "241", "cs_portfolio_category", "50");
INSERT INTO `wp_postmeta` VALUES("9931", "241", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1823,1822,1821,1820\"]");
INSERT INTO `wp_postmeta` VALUES("9932", "241", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("9933", "241", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("9934", "241", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("9935", "241", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("9936", "241", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("9937", "241", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("9938", "241", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("9939", "241", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("9940", "241", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9941", "241", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9942", "241", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9943", "241", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("9944", "241", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("9945", "241", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("9946", "241", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("9947", "241", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("9948", "241", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("9949", "241", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("9950", "241", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("9951", "241", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("9952", "241", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("9953", "241", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("9954", "241", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("9955", "241", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("9956", "241", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("9957", "241", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("9958", "241", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10139", "1157", "_wp_attached_file", "2014/12/Portfolio11.jpg");
INSERT INTO `wp_postmeta` VALUES("10140", "1157", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:23:\"2014/12/Portfolio11.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio11-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio11-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio11-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio11-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio11-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio11-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10141", "244", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("10142", "244", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10143", "244", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10144", "244", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10145", "244", "cs_portfolio_category", "7");
INSERT INTO `wp_postmeta` VALUES("10146", "244", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1830,1829,1828,1826,1825\"]");
INSERT INTO `wp_postmeta` VALUES("10147", "244", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10148", "244", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10149", "244", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10150", "244", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10151", "244", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10152", "244", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10153", "244", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10154", "244", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10155", "244", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10156", "244", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10157", "244", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10158", "244", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10159", "244", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10160", "244", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10161", "244", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10162", "244", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10163", "244", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10164", "244", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10165", "244", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10166", "244", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10167", "244", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10168", "244", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10169", "244", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10170", "244", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10171", "244", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10172", "244", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10173", "244", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10174", "245", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("10175", "245", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10176", "245", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10177", "245", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10178", "245", "cs_portfolio_category", "7");
INSERT INTO `wp_postmeta` VALUES("10179", "245", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1775,1774\"]");
INSERT INTO `wp_postmeta` VALUES("10180", "245", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10181", "245", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10182", "245", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10183", "245", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10184", "245", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10185", "245", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10186", "245", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10187", "245", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10188", "245", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10189", "245", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10190", "245", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10191", "245", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10192", "245", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10193", "245", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10194", "245", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10195", "245", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10196", "245", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10197", "245", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10198", "245", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10199", "245", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10200", "245", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10201", "245", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10202", "245", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10203", "245", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10204", "245", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10205", "245", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10206", "245", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10209", "1183", "_wp_attached_file", "2015/01/Portfolio13.jpg");
INSERT INTO `wp_postmeta` VALUES("10210", "1183", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:23:\"2015/01/Portfolio13.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio13-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio13-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio13-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio13-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio13-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio13-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio13-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio13-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10211", "1097", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("10212", "1099", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("10229", "1195", "_wp_attached_file", "2015/01/Portfolio16.jpg");
INSERT INTO `wp_postmeta` VALUES("10230", "1195", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2015/01/Portfolio16.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio16-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Portfolio16-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio16-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio16-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio16-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio16-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio16-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio16-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio16-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio16-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10412", "1200", "_wp_attached_file", "2015/01/Portfolio18.jpg");
INSERT INTO `wp_postmeta` VALUES("10413", "1200", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2015/01/Portfolio18.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio18-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Portfolio18-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio18-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio18-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio18-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio18-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio18-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio18-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio18-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio18-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10414", "1102", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("10415", "1102", "_wpb_vc_js_interface_version", "0");
INSERT INTO `wp_postmeta` VALUES("10416", "1102", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10417", "1102", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("10418", "1102", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10419", "1102", "cs_portfolio_category", "6");
INSERT INTO `wp_postmeta` VALUES("10420", "1102", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1802,1800\"]");
INSERT INTO `wp_postmeta` VALUES("10421", "1102", "price", "");
INSERT INTO `wp_postmeta` VALUES("10422", "1102", "value", "");
INSERT INTO `wp_postmeta` VALUES("10423", "1102", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("10424", "1102", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("10425", "1102", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("10426", "1102", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("10427", "1102", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("10428", "1102", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("10429", "1102", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("10430", "1102", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("10431", "1102", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("10432", "1102", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("10433", "1102", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("10434", "1102", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("10435", "1102", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("10436", "1102", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("10437", "1102", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("10438", "1102", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("10439", "1102", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("10440", "1102", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("10441", "1102", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("10442", "1102", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("10443", "1102", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("10444", "1102", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("10445", "1102", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("10446", "1102", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10447", "1102", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("10448", "1102", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("10449", "1102", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("10450", "1102", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10451", "1102", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("10452", "1102", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("10453", "1102", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("10454", "1102", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("10455", "1102", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("10456", "1102", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("10457", "1102", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10458", "1102", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10459", "1102", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10460", "1102", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10461", "1102", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10462", "1102", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10463", "1102", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10464", "1102", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10465", "1102", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10466", "1102", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10467", "1102", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10468", "1102", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10469", "1102", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10470", "1102", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10471", "1102", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10472", "1102", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10473", "1102", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10474", "1102", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10475", "1102", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10476", "1102", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10477", "1102", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10478", "1102", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10479", "1102", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10480", "1102", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10481", "1102", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10482", "1102", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10483", "1102", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10484", "1102", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("10485", "1213", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10486", "1213", "_edit_lock", "1423041095:1");
INSERT INTO `wp_postmeta` VALUES("10492", "1213", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10493", "1213", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10494", "1213", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10495", "1213", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("10496", "1213", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10497", "1213", "cs_portfolio_category", "6");
INSERT INTO `wp_postmeta` VALUES("10498", "1213", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1836,1835,1834,1833,1832,1831\"]");
INSERT INTO `wp_postmeta` VALUES("10499", "1213", "price", "");
INSERT INTO `wp_postmeta` VALUES("10500", "1213", "value", "");
INSERT INTO `wp_postmeta` VALUES("10501", "1213", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("10502", "1213", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("10503", "1213", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("10504", "1213", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("10505", "1213", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("10506", "1213", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("10507", "1213", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("10508", "1213", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("10509", "1213", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("10510", "1213", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("10511", "1213", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("10512", "1213", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("10513", "1213", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("10514", "1213", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("10515", "1213", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("10516", "1213", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("10517", "1213", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("10518", "1213", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("10519", "1213", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("10520", "1213", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("10521", "1213", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("10522", "1213", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("10523", "1213", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("10524", "1213", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10525", "1213", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("10526", "1213", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("10527", "1213", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("10528", "1213", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10529", "1213", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("10530", "1213", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("10531", "1213", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("10532", "1213", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("10533", "1213", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("10534", "1213", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("10535", "1213", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10536", "1213", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10537", "1213", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10538", "1213", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10539", "1213", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10540", "1213", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10541", "1213", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10542", "1213", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10543", "1213", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10544", "1213", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10545", "1213", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10546", "1213", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10547", "1213", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10548", "1213", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10549", "1213", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10550", "1213", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10551", "1213", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10552", "1213", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10553", "1213", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10554", "1213", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10555", "1213", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10556", "1213", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10557", "1213", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10558", "1213", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10559", "1213", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10560", "1213", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10561", "1213", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10562", "1226", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10563", "1226", "_edit_lock", "1439947798:1");
INSERT INTO `wp_postmeta` VALUES("10564", "1227", "_wp_attached_file", "2015/01/Portfolio21.jpg");
INSERT INTO `wp_postmeta` VALUES("10565", "1227", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2015/01/Portfolio21.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio21-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Portfolio21-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio21-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio21-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio21-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio21-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio21-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio21-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio21-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio21-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10567", "1226", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("10568", "1226", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10569", "1226", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10570", "1226", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("10571", "1226", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10572", "1226", "cs_portfolio_category", "50");
INSERT INTO `wp_postmeta` VALUES("10573", "1226", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1763,1762,1765\"]");
INSERT INTO `wp_postmeta` VALUES("10574", "1226", "price", "");
INSERT INTO `wp_postmeta` VALUES("10575", "1226", "value", "");
INSERT INTO `wp_postmeta` VALUES("10576", "1226", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("10577", "1226", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("10578", "1226", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("10579", "1226", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("10580", "1226", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("10581", "1226", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("10582", "1226", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("10583", "1226", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("10584", "1226", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("10585", "1226", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("10586", "1226", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("10587", "1226", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("10588", "1226", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("10589", "1226", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("10590", "1226", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("10591", "1226", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("10592", "1226", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("10593", "1226", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("10594", "1226", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("10595", "1226", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("10596", "1226", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("10597", "1226", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("10598", "1226", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("10599", "1226", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10600", "1226", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("10601", "1226", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("10602", "1226", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("10603", "1226", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10604", "1226", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("10605", "1226", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("10606", "1226", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("10607", "1226", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("10608", "1226", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("10609", "1226", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("10610", "1226", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10611", "1226", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10612", "1226", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10613", "1226", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10614", "1226", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10615", "1226", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10616", "1226", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10617", "1226", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10618", "1226", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10619", "1226", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10620", "1226", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10621", "1226", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10622", "1226", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10623", "1226", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10624", "1226", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10625", "1226", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10626", "1226", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10627", "1226", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10628", "1226", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10629", "1226", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10630", "1226", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10631", "1226", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10632", "1226", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10633", "1226", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10634", "1226", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10635", "1226", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10636", "1226", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10637", "1230", "_wp_attached_file", "2015/01/Portfolio22.jpg");
INSERT INTO `wp_postmeta` VALUES("10638", "1230", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2015/01/Portfolio22.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio22-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Portfolio22-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio22-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio22-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio22-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio22-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio22-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio22-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio22-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio22-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10640", "1228", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10641", "1228", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("10642", "1228", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10643", "1228", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10644", "1228", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("10645", "1228", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10646", "1228", "cs_portfolio_category", "7");
INSERT INTO `wp_postmeta` VALUES("10647", "1228", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1766\"]");
INSERT INTO `wp_postmeta` VALUES("10648", "1228", "price", "");
INSERT INTO `wp_postmeta` VALUES("10649", "1228", "value", "");
INSERT INTO `wp_postmeta` VALUES("10650", "1228", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("10651", "1228", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("10652", "1228", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("10653", "1228", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("10654", "1228", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("10655", "1228", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("10656", "1228", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("10657", "1228", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("10658", "1228", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("10659", "1228", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("10660", "1228", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("10661", "1228", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("10662", "1228", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("10663", "1228", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("10664", "1228", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("10665", "1228", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("10666", "1228", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("10667", "1228", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("10668", "1228", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("10669", "1228", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("10670", "1228", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("10671", "1228", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("10672", "1228", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("10673", "1228", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10674", "1228", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("10675", "1228", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("10676", "1228", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("10677", "1228", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10678", "1228", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("10679", "1228", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("10680", "1228", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("10681", "1228", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("10682", "1228", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("10683", "1228", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("10684", "1228", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10685", "1228", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10686", "1228", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10687", "1228", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10688", "1228", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10689", "1228", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10690", "1228", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10691", "1228", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10692", "1228", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10693", "1228", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10694", "1228", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10695", "1228", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10696", "1228", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10697", "1228", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10698", "1228", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10699", "1228", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10700", "1228", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10701", "1228", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10702", "1228", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10703", "1228", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10704", "1228", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10705", "1228", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10706", "1228", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10707", "1228", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10708", "1228", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10709", "1228", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10710", "1228", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("10711", "1228", "_edit_lock", "1435811519:1");
INSERT INTO `wp_postmeta` VALUES("10712", "1232", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("10713", "1232", "_edit_lock", "1423040883:1");
INSERT INTO `wp_postmeta` VALUES("10714", "1233", "_wp_attached_file", "2015/01/Portfolio23.jpg");
INSERT INTO `wp_postmeta` VALUES("10715", "1233", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2015/01/Portfolio23.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio23-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Portfolio23-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio23-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio23-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio23-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio23-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio23-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio23-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio23-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio23-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("10719", "1232", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("10720", "1232", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("10721", "1232", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("10722", "1232", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("10723", "1232", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("10724", "1232", "cs_portfolio_category", "7");
INSERT INTO `wp_postmeta` VALUES("10725", "1232", "cs_portfolio_gallery", "[gallery link=\"none\" columns=\"1\" ids=\"1818,1816,1815,1814,1813\"]");
INSERT INTO `wp_postmeta` VALUES("10726", "1232", "price", "");
INSERT INTO `wp_postmeta` VALUES("10727", "1232", "value", "");
INSERT INTO `wp_postmeta` VALUES("10728", "1232", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("10729", "1232", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("10730", "1232", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("10731", "1232", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("10732", "1232", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("10733", "1232", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("10734", "1232", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("10735", "1232", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("10736", "1232", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("10737", "1232", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("10738", "1232", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("10739", "1232", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("10740", "1232", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("10741", "1232", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("10742", "1232", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("10743", "1232", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("10744", "1232", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("10745", "1232", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("10746", "1232", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("10747", "1232", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("10748", "1232", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("10749", "1232", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("10750", "1232", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("10751", "1232", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10752", "1232", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("10753", "1232", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("10754", "1232", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("10755", "1232", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10756", "1232", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("10757", "1232", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("10758", "1232", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("10759", "1232", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("10760", "1232", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("10761", "1232", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("10762", "1232", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("10763", "1232", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("10764", "1232", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("10765", "1232", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("10766", "1232", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("10767", "1232", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("10768", "1232", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("10769", "1232", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("10770", "1232", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10771", "1232", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10772", "1232", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10773", "1232", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("10774", "1232", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("10775", "1232", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("10776", "1232", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("10777", "1232", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("10778", "1232", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("10779", "1232", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("10780", "1232", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("10781", "1232", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("10782", "1232", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("10783", "1232", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("10784", "1232", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("10785", "1232", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("10786", "1232", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("10787", "1232", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("10788", "1232", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("11043", "239", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11044", "239", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11045", "239", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11046", "239", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11047", "239", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11048", "239", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11049", "239", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11050", "238", "cs_portfolio_about_project", "Stunning Brand Design");
INSERT INTO `wp_postmeta` VALUES("11051", "240", "cs_portfolio_about_project", "Coffee is beautiful branding");
INSERT INTO `wp_postmeta` VALUES("11052", "241", "cs_portfolio_about_project", "A Clean Business branding Project");
INSERT INTO `wp_postmeta` VALUES("11053", "242", "cs_portfolio_about_project", "BUSINESS IS THE LATEST HOVER EFFECT SEE CODE DROPS");
INSERT INTO `wp_postmeta` VALUES("11054", "243", "cs_portfolio_about_project", "Simple Yet Effective Branding");
INSERT INTO `wp_postmeta` VALUES("11055", "244", "cs_portfolio_about_project", "It\'s All About the Milk");
INSERT INTO `wp_postmeta` VALUES("11056", "245", "cs_portfolio_about_project", "BUSINESS IS THE LATEST HOVER EFFECT SEE CODE DROPS");
INSERT INTO `wp_postmeta` VALUES("21376", "9039", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21375", "9039", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21374", "9039", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21373", "9039", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21372", "9039", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21371", "9039", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21370", "9039", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21369", "9039", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21368", "9039", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21367", "9039", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21366", "9039", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21365", "9039", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21364", "9039", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21363", "9039", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21362", "9039", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21361", "9039", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21360", "9039", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21359", "9039", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21358", "9039", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21357", "9039", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21356", "9039", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21355", "9039", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21354", "9039", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21353", "9039", "option_5", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("11240", "396", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11241", "396", "cs_post_custom_setting", "0");
INSERT INTO `wp_postmeta` VALUES("11242", "396", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11243", "396", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11244", "396", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11245", "396", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11246", "396", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11247", "396", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11248", "396", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11249", "396", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11250", "396", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11251", "396", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11252", "396", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11253", "396", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11254", "396", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11255", "396", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11256", "396", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11257", "396", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11258", "396", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11259", "396", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11260", "396", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11261", "396", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11262", "396", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11263", "396", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11264", "396", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11265", "396", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11266", "396", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11267", "396", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11268", "396", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11269", "396", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11270", "396", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11271", "396", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11272", "396", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11273", "396", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11274", "396", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11275", "396", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11276", "396", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11317", "394", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11318", "394", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11319", "394", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11320", "394", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11321", "394", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11322", "394", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11323", "394", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11324", "394", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11325", "394", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11326", "394", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11327", "394", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11328", "394", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11329", "394", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11330", "394", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11331", "394", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11332", "394", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11333", "394", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11334", "394", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11335", "394", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11336", "394", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11337", "394", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11338", "394", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11339", "394", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11340", "394", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11341", "394", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11342", "394", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11343", "394", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11344", "394", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11345", "394", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11346", "394", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11347", "394", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11348", "394", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11349", "394", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11350", "394", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11351", "394", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11352", "394", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11353", "394", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11563", "1331", "_wp_attached_file", "2014/12/Laptop2.jpg");
INSERT INTO `wp_postmeta` VALUES("11364", "391", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11365", "391", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11366", "391", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11367", "391", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11368", "391", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11369", "391", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11370", "391", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11371", "391", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11372", "391", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11373", "391", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11374", "391", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11375", "391", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11376", "391", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11377", "391", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11378", "391", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11379", "391", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11380", "391", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11381", "391", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11382", "391", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11383", "391", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11384", "391", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11385", "391", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11386", "391", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11387", "391", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11388", "391", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11389", "391", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11390", "391", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11391", "391", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11392", "391", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11393", "391", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11394", "391", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11395", "391", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11396", "391", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11397", "391", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11398", "391", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11399", "391", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11400", "391", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11408", "385", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11409", "385", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11410", "385", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11411", "385", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11412", "385", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11413", "385", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11414", "385", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11415", "385", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11416", "385", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11417", "385", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11418", "385", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11419", "385", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11420", "385", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11421", "385", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11422", "385", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11423", "385", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11424", "385", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11425", "385", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11426", "385", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11427", "385", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11428", "385", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11429", "385", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11430", "385", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11431", "385", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11432", "385", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11433", "385", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11434", "385", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11435", "385", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11436", "385", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11437", "385", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11438", "385", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11439", "385", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11440", "385", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11441", "385", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11442", "385", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11443", "385", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11444", "385", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11445", "1323", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11446", "1323", "_edit_lock", "1473690067:1");
INSERT INTO `wp_postmeta` VALUES("11452", "1323", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11453", "1323", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("11454", "1323", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("11455", "1323", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("11456", "1323", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("11457", "1323", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11458", "1323", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11459", "1323", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("11460", "1323", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("11461", "1323", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("11462", "1323", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("11463", "1323", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("11464", "1323", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("11465", "1323", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("11466", "1323", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("11467", "1323", "cs_post_custom_setting", "0");
INSERT INTO `wp_postmeta` VALUES("17146", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("17147", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("17148", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("11468", "1323", "cs_post_enable_title", "0");
INSERT INTO `wp_postmeta` VALUES("17143", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("17144", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("17145", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("11469", "1323", "cs_post_enable_thumbnail", "0");
INSERT INTO `wp_postmeta` VALUES("17140", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("17141", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("17142", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("11470", "1323", "cs_post_page_title_custom", "0");
INSERT INTO `wp_postmeta` VALUES("17137", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53904", "17761", "_wp_attached_file", "2015/01/Graphic-Designer1.jpg");
INSERT INTO `wp_postmeta` VALUES("17139", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("11471", "1323", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11472", "1323", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11473", "1323", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11474", "1323", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11475", "1323", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11476", "1323", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11477", "1323", "price", "");
INSERT INTO `wp_postmeta` VALUES("11478", "1323", "value", "");
INSERT INTO `wp_postmeta` VALUES("11479", "1323", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("11480", "1323", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("11481", "1323", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("11482", "1323", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("11483", "1323", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("11484", "1323", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("11485", "1323", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("11486", "1323", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("11487", "1323", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("11488", "1323", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("11489", "1323", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("11490", "1323", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("11491", "1323", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("11492", "1323", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("11493", "1323", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("11494", "1323", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("11495", "1323", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("11496", "1323", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("11497", "1323", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("11498", "1323", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("11499", "1323", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("11500", "1323", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("11501", "1323", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("11502", "1323", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11503", "1323", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("11504", "1323", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("11505", "1323", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("11506", "1323", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11507", "1323", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("11508", "1323", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("11509", "1323", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("11510", "1323", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("11511", "1323", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("11512", "1323", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("11513", "1323", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11514", "1323", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11515", "1323", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11516", "1323", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11517", "1323", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11518", "1323", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11519", "1323", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11520", "1323", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11521", "1323", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11522", "1323", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11523", "1323", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11524", "1323", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11525", "1323", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11526", "1323", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11527", "1323", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11528", "1323", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11529", "1323", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11530", "1323", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11531", "1323", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11532", "1323", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11533", "1323", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11534", "1323", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11535", "1323", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11536", "1323", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11537", "1323", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11538", "1323", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("13597", "1525", "_wp_attached_file", "2014/12/SadTrees.jpg");
INSERT INTO `wp_postmeta` VALUES("17136", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("13582", "1519", "_wp_attached_file", "2014/12/Mountain.jpg");
INSERT INTO `wp_postmeta` VALUES("13592", "1523", "_wp_attached_file", "2014/12/Tree.jpg");
INSERT INTO `wp_postmeta` VALUES("11564", "1331", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:775;s:4:\"file\";s:19:\"2014/12/Laptop2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Laptop2-150x150.jpg\";s:5:\"width\";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:\"Laptop2-600x397.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Laptop2-1170x775.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:775;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"Laptop2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"Laptop2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"Laptop2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"Laptop2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"Laptop2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"Laptop2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"Laptop2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"Laptop2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:4:{i:0;s:9:\"480x762_c\";i:1;s:9:\"300x760_c\";i:2;s:9:\"480x600_c\";i:3;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53914", "17765", "_wp_attached_file", "2014/12/graphic-design.jpg");
INSERT INTO `wp_postmeta` VALUES("11568", "1332", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("11569", "1332", "_edit_lock", "1473648448:1");
INSERT INTO `wp_postmeta` VALUES("11570", "1333", "_wp_attached_file", "2015/01/Deer.jpg");
INSERT INTO `wp_postmeta` VALUES("11571", "1333", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:16:\"2015/01/Deer.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Deer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Deer-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Deer-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"Deer-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"Deer-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"Deer-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"Deer-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"Deer-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:16:\"Deer-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:16:\"Deer-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"Deer-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:3:{i:0;s:9:\"480x762_c\";i:1;s:9:\"300x760_c\";i:2;s:9:\"480x600_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("11572", "1332", "_thumbnail_id", "209");
INSERT INTO `wp_postmeta` VALUES("11575", "1332", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11576", "1332", "cs_post_video_source", "");
INSERT INTO `wp_postmeta` VALUES("11577", "1332", "cs_post_video_type", "mp4");
INSERT INTO `wp_postmeta` VALUES("11578", "1332", "cs_post_video_url", "");
INSERT INTO `wp_postmeta` VALUES("11579", "1332", "cs_post_preview_image", "");
INSERT INTO `wp_postmeta` VALUES("11580", "1332", "cs_post_video_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11581", "1332", "cs_post_video_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11582", "1332", "cs_post_video_height", "");
INSERT INTO `wp_postmeta` VALUES("11583", "1332", "cs_post_audio_type", "");
INSERT INTO `wp_postmeta` VALUES("11584", "1332", "cs_post_audio_url", "");
INSERT INTO `wp_postmeta` VALUES("11585", "1332", "cs_post_quote_type", "");
INSERT INTO `wp_postmeta` VALUES("11586", "1332", "cs_post_quote", "");
INSERT INTO `wp_postmeta` VALUES("11587", "1332", "cs_post_author", "");
INSERT INTO `wp_postmeta` VALUES("11588", "1332", "cs_post_link", "");
INSERT INTO `wp_postmeta` VALUES("11589", "1332", "cs_post_link_text", "");
INSERT INTO `wp_postmeta` VALUES("11590", "1332", "cs_post_custom_setting", "0");
INSERT INTO `wp_postmeta` VALUES("11591", "1332", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11592", "1332", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11593", "1332", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11594", "1332", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11595", "1332", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11596", "1332", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11597", "1332", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11598", "1332", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11599", "1332", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11600", "1332", "price", "");
INSERT INTO `wp_postmeta` VALUES("11601", "1332", "value", "");
INSERT INTO `wp_postmeta` VALUES("11602", "1332", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("11603", "1332", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("11604", "1332", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("11605", "1332", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("11606", "1332", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("11607", "1332", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("11608", "1332", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("11609", "1332", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("11610", "1332", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("11611", "1332", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("11612", "1332", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("11613", "1332", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("11614", "1332", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("11615", "1332", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("11616", "1332", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("11617", "1332", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("11618", "1332", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("11619", "1332", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("11620", "1332", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("11621", "1332", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("11622", "1332", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("11623", "1332", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("11624", "1332", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("11625", "1332", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11626", "1332", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("11627", "1332", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("11628", "1332", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("11629", "1332", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11630", "1332", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("11631", "1332", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("11632", "1332", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("11633", "1332", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("11634", "1332", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("11635", "1332", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("11636", "1332", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11637", "1332", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11638", "1332", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11639", "1332", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11640", "1332", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11641", "1332", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11642", "1332", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11643", "1332", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11644", "1332", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11645", "1332", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11646", "1332", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11647", "1332", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11648", "1332", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11649", "1332", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11650", "1332", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11651", "1332", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11652", "1332", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11653", "1332", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11654", "1332", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11655", "1332", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11656", "1332", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11657", "1332", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11658", "1332", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11659", "1332", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11660", "1332", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11661", "1332", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11665", "1336", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:25:\"2015/01/country-train.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"country-train-150x150.jpg\";s:5:\"width\";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:\"country-train-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"country-train-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"country-train-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:25:\"country-train-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:25:\"country-train-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:25:\"country-train-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:25:\"country-train-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:25:\"country-train-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:25:\"country-train-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"country-train-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("11666", "662", "_thumbnail_id", "1336");
INSERT INTO `wp_postmeta` VALUES("11669", "662", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("11670", "662", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11671", "662", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11672", "662", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11673", "662", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11674", "662", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11675", "662", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11676", "662", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11677", "662", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11678", "662", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11679", "662", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11680", "662", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11681", "662", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11682", "662", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11683", "662", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11684", "662", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11685", "662", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11686", "662", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11687", "662", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11688", "662", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11689", "662", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11690", "662", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11691", "662", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11692", "662", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11693", "662", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11694", "662", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11695", "662", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11696", "662", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11697", "662", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11698", "662", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11699", "662", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11700", "662", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11701", "662", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11702", "662", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11703", "662", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11704", "662", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11705", "662", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11753", "1340", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:23:\"2014/12/Portfolio51.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Portfolio51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Portfolio51-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"Portfolio51-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"Portfolio51-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"Portfolio51-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"Portfolio51-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"Portfolio51-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"Portfolio51-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"Portfolio51-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"Portfolio51-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"780x680_c\";i:1;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("11754", "635", "_thumbnail_id", "1340");
INSERT INTO `wp_postmeta` VALUES("11757", "635", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11758", "635", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11759", "635", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11760", "635", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11761", "635", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11762", "635", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11763", "635", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11764", "635", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11765", "635", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11766", "635", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11767", "635", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11768", "635", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11769", "635", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11770", "635", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11771", "635", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11772", "635", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11773", "635", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11774", "635", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11775", "635", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11776", "635", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11777", "635", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("11778", "635", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("11779", "635", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("11780", "635", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("11781", "635", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("11782", "635", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("11783", "635", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("11784", "635", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("11967", "1346", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:781;s:4:\"file\";s:25:\"2014/12/VanInDistance.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"VanInDistance-150x150.jpg\";s:5:\"width\";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:\"VanInDistance-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"VanInDistance-1170x781.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:781;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"VanInDistance-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:25:\"VanInDistance-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:25:\"VanInDistance-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:25:\"VanInDistance-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:25:\"VanInDistance-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:25:\"VanInDistance-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:25:\"VanInDistance-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"VanInDistance-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"780x680_c\";i:1;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("11968", "633", "_thumbnail_id", "1346");
INSERT INTO `wp_postmeta` VALUES("11971", "633", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11972", "633", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11973", "633", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11974", "633", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11975", "633", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("11976", "633", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("11977", "633", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("11978", "633", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("11979", "633", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("11980", "633", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("11981", "633", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("11982", "633", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("11983", "633", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("11984", "633", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("11985", "633", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("11986", "633", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("11987", "633", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("11988", "633", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("11989", "633", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11990", "633", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11991", "633", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11992", "633", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("11993", "633", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("11994", "633", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("11995", "633", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("11996", "633", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("11997", "633", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("11998", "633", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("11999", "633", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12000", "633", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12001", "633", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12002", "633", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12003", "633", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12004", "633", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12005", "633", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12006", "633", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("12031", "1350", "_wp_attached_file", "2014/12/SandDune.jpg");
INSERT INTO `wp_postmeta` VALUES("12032", "1350", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:20:\"2014/12/SandDune.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"SandDune-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"SandDune-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"SandDune-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"SandDune-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"SandDune-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"SandDune-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"SandDune-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"SandDune-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"SandDune-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"SandDune-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"SandDune-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"780x680_c\";i:1;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("12033", "630", "_thumbnail_id", "1350");
INSERT INTO `wp_postmeta` VALUES("12036", "630", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("12037", "630", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12038", "630", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12039", "630", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12040", "630", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12041", "630", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12042", "630", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("12043", "630", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("12044", "630", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("12045", "630", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("12046", "630", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("12047", "630", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("12048", "630", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("12049", "630", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("12050", "630", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("12051", "630", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("12052", "630", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("12053", "630", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("12054", "630", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("12055", "630", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12056", "630", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12057", "630", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12058", "630", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12059", "630", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("12060", "630", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("12061", "630", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("12062", "630", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("12063", "630", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("12064", "630", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("12065", "630", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12066", "630", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12067", "630", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12068", "630", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12069", "630", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12070", "630", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12071", "630", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12072", "630", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("12408", "629", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("12409", "629", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12410", "629", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12411", "629", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12412", "629", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12413", "629", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12414", "629", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("12415", "629", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("12416", "629", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("12417", "629", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("12418", "629", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("12419", "629", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("12420", "629", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("12421", "629", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("12422", "629", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("12423", "629", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("12424", "629", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("12425", "629", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("12426", "629", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("12427", "629", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12428", "629", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12429", "629", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12430", "629", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12431", "629", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("12432", "629", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("12433", "629", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("12434", "629", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("12435", "629", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("12436", "629", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("12437", "629", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12438", "629", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12439", "629", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12440", "629", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12441", "629", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12442", "629", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12443", "629", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12444", "629", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("12473", "627", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("12474", "627", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12475", "627", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12476", "627", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12477", "627", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12478", "627", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12479", "627", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("12480", "627", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("12481", "627", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("12482", "627", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("12483", "627", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("12484", "627", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("12485", "627", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("12486", "627", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("12487", "627", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("12488", "627", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("12489", "627", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("12490", "627", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("12491", "627", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("12492", "627", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12493", "627", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12494", "627", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12495", "627", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12496", "627", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("12497", "627", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("12498", "627", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("12499", "627", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("12500", "627", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("12501", "627", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("12502", "627", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12503", "627", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12504", "627", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12505", "627", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12506", "627", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12507", "627", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12508", "627", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12509", "627", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("12513", "1362", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:26:\"2014/12/LittleBoatTown.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"LittleBoatTown-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:26:\"LittleBoatTown-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"LittleBoatTown-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:2:{i:0;s:9:\"780x680_c\";i:1;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("12514", "625", "_thumbnail_id", "1362");
INSERT INTO `wp_postmeta` VALUES("12517", "625", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("12518", "625", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12519", "625", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12520", "625", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12521", "625", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12522", "625", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12523", "625", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("12524", "625", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("12525", "625", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("12526", "625", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("12527", "625", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("12528", "625", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("12529", "625", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("12530", "625", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("12531", "625", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("12532", "625", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("12533", "625", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("12534", "625", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("12535", "625", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("12536", "625", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12537", "625", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12538", "625", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12539", "625", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12540", "625", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("12541", "625", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("12542", "625", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("12543", "625", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("12544", "625", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("12545", "625", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("12546", "625", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12547", "625", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12548", "625", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12549", "625", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12550", "625", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12551", "625", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12552", "625", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12553", "625", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("12559", "623", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("12560", "623", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12561", "623", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12562", "623", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12563", "623", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12564", "623", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12565", "623", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("12566", "623", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("12567", "623", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("12568", "623", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("12569", "623", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("12570", "623", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("12571", "623", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("12572", "623", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("12573", "623", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("12574", "623", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("12575", "623", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("12576", "623", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("12577", "623", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("12578", "623", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12579", "623", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12580", "623", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12581", "623", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12582", "623", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("12583", "623", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("12584", "623", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("12585", "623", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("12586", "623", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("12587", "623", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("12588", "623", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12589", "623", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12590", "623", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12591", "623", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12592", "623", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12593", "623", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12594", "623", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12595", "623", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("12601", "615", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("12602", "615", "cs_post_custom_setting", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12603", "615", "cs_post_enable_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12604", "615", "cs_post_enable_thumbnail", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12605", "615", "cs_post_page_title_custom", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12606", "615", "cs_post_page_title", "<br />\r\n<b>Notice</b>:  Undefined index: value in <b>/home/wordpress/public_html/wp-spectrum/wp-content/plugins/cmssuperheroes/core/core.options.php</b> on line <b>260</b><br />\r\n");
INSERT INTO `wp_postmeta` VALUES("12607", "615", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("12608", "615", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("12609", "615", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("12610", "615", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("12611", "615", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("12612", "615", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("12613", "615", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("12614", "615", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("12615", "615", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("12616", "615", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("12617", "615", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("12618", "615", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("12619", "615", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("12620", "615", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12621", "615", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12622", "615", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12623", "615", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("12624", "615", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("12625", "615", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("12626", "615", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("12627", "615", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("12628", "615", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("12629", "615", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("12630", "615", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("12631", "615", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("12632", "615", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("12633", "615", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("12634", "615", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("12635", "615", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("12636", "615", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("12637", "615", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("15136", "1845", "_wp_attached_file", "2014/12/macmockup.png");
INSERT INTO `wp_postmeta` VALUES("15137", "1845", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:554;s:6:\"height\";i:456;s:4:\"file\";s:21:\"2014/12/macmockup.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"macmockup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"macmockup-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"macmockup-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"macmockup-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"macmockup-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"macmockup-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"macmockup-554x400.png\";s:5:\"width\";i:554;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"macmockup-554x441.png\";s:5:\"width\";i:554;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"macmockup-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("14926", "18", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("14927", "18", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("14925", "18", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("13183", "1482", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("13184", "1482", "_edit_lock", "1473838117:1");
INSERT INTO `wp_postmeta` VALUES("13185", "1482", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("13186", "1482", "_wpb_shortcodes_custom_css", ".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}");
INSERT INTO `wp_postmeta` VALUES("13187", "1482", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("13188", "1482", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("13189", "1482", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("13190", "1482", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("13191", "1482", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("13192", "1482", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("13193", "1482", "cs_onepage", "0");
INSERT INTO `wp_postmeta` VALUES("13194", "1482", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("13195", "1482", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("13196", "1482", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("13197", "1482", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("13198", "1482", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("13199", "1482", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("13200", "1482", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("13201", "1482", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("13202", "1482", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("13203", "1482", "cs_body_custom_class", "home-light");
INSERT INTO `wp_postmeta` VALUES("13204", "1482", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("13205", "1482", "cs_header_setting", "0");
INSERT INTO `wp_postmeta` VALUES("13206", "1482", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("13207", "1482", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("13208", "1482", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("13209", "1482", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("13210", "1482", "cs_header_fixed_top", "0");
INSERT INTO `wp_postmeta` VALUES("13211", "1482", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("13212", "1482", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("13213", "1482", "cs_header_border_bottom", "0");
INSERT INTO `wp_postmeta` VALUES("13214", "1482", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("13215", "1482", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("13216", "1482", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("13217", "1482", "cs_header_bg_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("13218", "1482", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("13219", "1482", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("13220", "1482", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("13221", "1482", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("13222", "1482", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("13223", "1482", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("13224", "1482", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("13225", "1482", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("13226", "1482", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("13227", "1482", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("13228", "1482", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("13229", "1482", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("13230", "1482", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("13231", "1482", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("13232", "1482", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("13233", "1482", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("13234", "1482", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("13235", "1482", "cs_page_title_setting", "0");
INSERT INTO `wp_postmeta` VALUES("13236", "1482", "cs_page_title_enable", "0");
INSERT INTO `wp_postmeta` VALUES("13237", "1482", "cs_title_bar_align", "center");
INSERT INTO `wp_postmeta` VALUES("13238", "1482", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("13239", "1482", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("13240", "1482", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("13241", "1482", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("13242", "1482", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("13243", "1482", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("13244", "1482", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("13245", "1482", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("13246", "1482", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("13247", "1482", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("13248", "1482", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("13249", "1482", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("13250", "1482", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("13251", "1482", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("13252", "1482", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("13253", "1482", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("13254", "1482", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("13255", "1482", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("13256", "1482", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("13257", "1482", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("13258", "1482", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("13259", "1482", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("13260", "1482", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("13261", "1482", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("13262", "1482", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("13263", "1482", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("13264", "1482", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("13265", "1482", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("13266", "1482", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("13267", "1482", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("13268", "1482", "cs_page_limit", "5");
INSERT INTO `wp_postmeta` VALUES("13269", "1482", "cs_page_masonry_columns", "3");
INSERT INTO `wp_postmeta` VALUES("13270", "1482", "cs_page_masonry_loadmore", "no");
INSERT INTO `wp_postmeta` VALUES("13271", "1482", "cs_page_masonry_filter", "yes");
INSERT INTO `wp_postmeta` VALUES("13272", "1482", "cs_page_title_engle", "0");
INSERT INTO `wp_postmeta` VALUES("13273", "1482", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("13274", "1482", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("13275", "1482", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("13276", "1482", "price", "");
INSERT INTO `wp_postmeta` VALUES("13277", "1482", "value", "");
INSERT INTO `wp_postmeta` VALUES("13278", "1482", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("13279", "1482", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("13280", "1482", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("13281", "1482", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("13282", "1482", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("13283", "1482", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("13284", "1482", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("13285", "1482", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("13286", "1482", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("13287", "1482", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("13288", "1482", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("13289", "1482", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("13290", "1482", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("13291", "1482", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("13292", "1482", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("13293", "1482", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("13294", "1482", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("13295", "1482", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("13296", "1482", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("13297", "1482", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("13298", "1482", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("13299", "1482", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("13300", "1482", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("13301", "1482", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("13302", "1482", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("13303", "1482", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("13304", "1482", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("13305", "1482", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("13306", "1482", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("13307", "1482", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("13308", "1482", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("13309", "1482", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("13310", "1482", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("13311", "1482", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("13312", "1482", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("13313", "1482", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("13314", "1482", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("13315", "1482", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("13316", "1482", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("13317", "1482", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("13318", "1482", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("13319", "1482", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("13320", "1482", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("13321", "1482", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("13322", "1482", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("13323", "1482", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("13324", "1482", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("13325", "1482", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("13326", "1482", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("13327", "1482", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("13328", "1482", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("13329", "1482", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("13330", "1482", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("13331", "1482", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("13332", "1482", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("13333", "1482", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("13334", "1482", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("13335", "1482", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("13336", "1482", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("13337", "1482", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("13338", "1482", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13339", "1482", "_post_restored_from", "a:3:{s:20:\"restored_revision_id\";i:1486;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1421205754;}");
INSERT INTO `wp_postmeta` VALUES("21253", "9032", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21252", "9032", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21251", "9032", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21250", "9032", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21249", "9032", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21248", "9032", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21247", "9032", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21246", "9032", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21245", "9032", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21244", "9032", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21243", "9032", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21242", "9032", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21241", "9032", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21240", "9032", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21239", "9032", "option_5", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21238", "9032", "option_4", "10 Domains");
INSERT INTO `wp_postmeta` VALUES("21237", "9032", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21236", "9032", "option_2", "10GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21235", "9032", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21234", "9032", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21233", "9032", "price", "09.99");
INSERT INTO `wp_postmeta` VALUES("21232", "9032", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21904", "3629", "_wpb_shortcodes_custom_css", ".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}");
INSERT INTO `wp_postmeta` VALUES("50889", "3629", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("50890", "3629", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50891", "3629", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("50892", "3629", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("50893", "3629", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("50894", "1482", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("50895", "1482", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50896", "1482", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("21318", "9038", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21319", "9038", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21317", "9038", "option_5", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21316", "9038", "option_4", "10 Domains");
INSERT INTO `wp_postmeta` VALUES("21315", "9038", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21314", "9038", "option_2", "50GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21313", "9038", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21312", "9038", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21311", "9038", "price", "49.99");
INSERT INTO `wp_postmeta` VALUES("21310", "9038", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21308", "9036", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("21307", "9036", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("21306", "9036", "cs_video_link_mp4", "http://video-js.zencoder.com/oceans-clip.mp4");
INSERT INTO `wp_postmeta` VALUES("21305", "9036", "cs_video_link_ogg", "http://video-js.zencoder.com/oceans-clip.ogv");
INSERT INTO `wp_postmeta` VALUES("21304", "9036", "cs_video_link_webm", "http://video-js.zencoder.com/oceans-clip.webm");
INSERT INTO `wp_postmeta` VALUES("21301", "9036", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21302", "9036", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21303", "9036", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("14924", "18", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("14923", "18", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("14922", "18", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("14921", "18", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("14920", "18", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("14919", "18", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("14918", "18", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("14917", "18", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("14916", "18", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("13491", "1514", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("13492", "1514", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("13493", "1514", "_menu_item_object_id", "18");
INSERT INTO `wp_postmeta` VALUES("13494", "1514", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("13495", "1514", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("13496", "1514", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("13497", "1514", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("13498", "1514", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("13500", "1514", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("13501", "1514", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("13502", "1514", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("13503", "1514", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("13504", "1514", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("13505", "1514", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("13506", "1514", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("13507", "1514", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("13508", "1514", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("13509", "1514", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("13510", "1514", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("13511", "1514", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("13512", "1514", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("14951", "1226", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("14950", "1228", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("14949", "1232", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("13587", "1521", "_wp_attached_file", "2014/12/Sea.jpg");
INSERT INTO `wp_postmeta` VALUES("13588", "1521", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:779;s:4:\"file\";s:15:\"2014/12/Sea.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Sea-150x150.jpg\";s:5:\"width\";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:\"Sea-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"Sea-1170x779.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:779;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:15:\"Sea-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:15:\"Sea-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:15:\"Sea-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:15:\"Sea-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:15:\"Sea-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:15:\"Sea-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:15:\"Sea-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:13:\"Sea-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:4:{i:0;s:9:\"480x762_c\";i:1;s:9:\"300x760_c\";i:2;s:9:\"480x600_c\";i:3;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("13589", "391", "_thumbnail_id", "1521");
INSERT INTO `wp_postmeta` VALUES("13593", "1523", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:1170;s:4:\"file\";s:16:\"2014/12/Tree.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Tree-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"Tree-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Tree-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"Tree-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"Tree-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"Tree-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"Tree-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"Tree-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:16:\"Tree-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:16:\"Tree-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"Tree-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:4:{i:0;s:9:\"480x762_c\";i:1;s:9:\"300x760_c\";i:2;s:9:\"480x600_c\";i:3;s:9:\"880x680_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53603", "17737", "_wp_attached_file", "2014/01/post-9.jpg");
INSERT INTO `wp_postmeta` VALUES("13598", "1525", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:783;s:4:\"file\";s:20:\"2014/12/SadTrees.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"SadTrees-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"SadTrees-600x402.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"SadTrees-1170x783.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:783;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"SadTrees-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"SadTrees-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"SadTrees-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"SadTrees-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"SadTrees-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"SadTrees-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"SadTrees-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"SadTrees-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:3:{i:0;s:9:\"480x762_c\";i:1;s:9:\"300x760_c\";i:2;s:9:\"480x600_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53909", "17763", "_wp_attached_file", "2015/01/work-stations-plus-espresso.jpg");
INSERT INTO `wp_postmeta` VALUES("13602", "1542", "_wp_attached_file", "2014/12/Newperspective.png");
INSERT INTO `wp_postmeta` VALUES("13603", "1542", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:581;s:6:\"height\";i:635;s:4:\"file\";s:26:\"2014/12/Newperspective.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Newperspective-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Newperspective-549x600.png\";s:5:\"width\";i:549;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:26:\"Newperspective-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:26:\"Newperspective-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"Newperspective-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"Newperspective-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:26:\"Newperspective-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:26:\"Newperspective-581x400.png\";s:5:\"width\";i:581;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:26:\"Newperspective-581x441.png\";s:5:\"width\";i:581;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"Newperspective-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("40757", "1332", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("40756", "1332", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("40755", "1332", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("40167", "14498", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("40168", "14498", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("40169", "14498", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("40170", "14498", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("40171", "14498", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("17134", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("17135", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("48139", "17274", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("48140", "17274", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("13828", "657", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("13829", "657", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("13830", "657", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("13831", "657", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("13832", "657", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("13833", "657", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("13834", "657", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("13835", "657", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("13836", "657", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("50787", "17513", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("50786", "17513", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("50785", "17513", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50784", "17513", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50783", "17513", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("50782", "17513", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("50781", "17513", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("50780", "17513", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("50779", "17513", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("50778", "17513", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("50861", "17513", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50776", "17513", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("50775", "17513", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("50773", "17513", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("50774", "17513", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("50772", "17513", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("50771", "17513", "_menu_item_object_id", "17507");
INSERT INTO `wp_postmeta` VALUES("50770", "17513", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("50769", "17513", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("14224", "1644", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("14225", "1644", "_edit_lock", "1435925521:1");
INSERT INTO `wp_postmeta` VALUES("14226", "1644", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("14227", "1644", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("14228", "1644", "_wpb_vc_js_interface_version", "2");
INSERT INTO `wp_postmeta` VALUES("14229", "1644", "cs_layout", "0");
INSERT INTO `wp_postmeta` VALUES("14230", "1644", "cs_page_layout", "right-fixed");
INSERT INTO `wp_postmeta` VALUES("14231", "1644", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("14232", "1644", "cs_sidebar_right", "cshero-widget-left");
INSERT INTO `wp_postmeta` VALUES("14233", "1644", "cs_onepage", "0");
INSERT INTO `wp_postmeta` VALUES("14234", "1644", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("14235", "1644", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("14236", "1644", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("14237", "1644", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("14238", "1644", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("14239", "1644", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("14240", "1644", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("14241", "1644", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("14242", "1644", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("14243", "1644", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("14244", "1644", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("14245", "1644", "cs_header_setting", "0");
INSERT INTO `wp_postmeta` VALUES("14246", "1644", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("14247", "1644", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("14248", "1644", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("14249", "1644", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("14250", "1644", "cs_header_fixed_top", "0");
INSERT INTO `wp_postmeta` VALUES("14251", "1644", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("14252", "1644", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("14253", "1644", "cs_header_border_bottom", "1");
INSERT INTO `wp_postmeta` VALUES("14254", "1644", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("14255", "1644", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("14256", "1644", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("14257", "1644", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("14258", "1644", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("14259", "1644", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("14260", "1644", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("14261", "1644", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("14262", "1644", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("14263", "1644", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("14264", "1644", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("14265", "1644", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("14266", "1644", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("14267", "1644", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("14268", "1644", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("14269", "1644", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("14270", "1644", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("14271", "1644", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("14272", "1644", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("14273", "1644", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("14274", "1644", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("14275", "1644", "cs_page_title_setting", "1");
INSERT INTO `wp_postmeta` VALUES("14276", "1644", "cs_page_title_enable", "1");
INSERT INTO `wp_postmeta` VALUES("14277", "1644", "cs_title_bar_align", "center");
INSERT INTO `wp_postmeta` VALUES("14278", "1644", "cs_title_bar_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("14279", "1644", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("14280", "1644", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("14281", "1644", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("14282", "1644", "cs_page_title_custom_subheader_text_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("14283", "1644", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("14284", "1644", "cs_page_title_bg", "1525");
INSERT INTO `wp_postmeta` VALUES("14285", "1644", "cs_page_title_bg_repeat", "no-repeat");
INSERT INTO `wp_postmeta` VALUES("14286", "1644", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("14287", "1644", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("14288", "1644", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("14289", "1644", "cs_page_title_bg_parallax", "1");
INSERT INTO `wp_postmeta` VALUES("14290", "1644", "cs_page_title_padding", "100px 0 100px 0");
INSERT INTO `wp_postmeta` VALUES("14291", "1644", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("14292", "1644", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("14293", "1644", "cs_breadcrumb", "1");
INSERT INTO `wp_postmeta` VALUES("14294", "1644", "cs_breadcrumb_text_align", "center");
INSERT INTO `wp_postmeta` VALUES("14295", "1644", "cs_breadcrumb_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("14296", "1644", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("14297", "1644", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("14298", "1644", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("14299", "1644", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("14300", "1644", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("14301", "1644", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("14302", "1644", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("14303", "1644", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("14304", "1644", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("14305", "1644", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("14306", "1644", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("14307", "1644", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("14308", "1644", "cs_page_limit", "5");
INSERT INTO `wp_postmeta` VALUES("14309", "1644", "cs_page_masonry_columns", "3");
INSERT INTO `wp_postmeta` VALUES("14310", "1644", "cs_page_masonry_loadmore", "no");
INSERT INTO `wp_postmeta` VALUES("14311", "1644", "cs_page_masonry_filter", "yes");
INSERT INTO `wp_postmeta` VALUES("14312", "1644", "cs_page_title_engle", "0");
INSERT INTO `wp_postmeta` VALUES("14313", "1644", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("14314", "1644", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("14315", "1644", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("14316", "1644", "price", "");
INSERT INTO `wp_postmeta` VALUES("14317", "1644", "value", "");
INSERT INTO `wp_postmeta` VALUES("14318", "1644", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("14319", "1644", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("14320", "1644", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("14321", "1644", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("14322", "1644", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("14323", "1644", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("14324", "1644", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("14325", "1644", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("14326", "1644", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("14327", "1644", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("14328", "1644", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("14329", "1644", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("14330", "1644", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("14331", "1644", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("14332", "1644", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("14333", "1644", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("14334", "1644", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("14335", "1644", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("14336", "1644", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("14337", "1644", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("14338", "1644", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("14339", "1644", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("14340", "1644", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("14341", "1644", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("14342", "1644", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("14343", "1644", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("14344", "1644", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("14345", "1644", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("14346", "1644", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("14347", "1644", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("14348", "1644", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("14349", "1644", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("14350", "1644", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("14351", "1644", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("14352", "1644", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("14353", "1644", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("14354", "1644", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("14355", "1644", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("14356", "1644", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("14357", "1644", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("14358", "1644", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("14359", "1644", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("14360", "1644", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("14361", "1644", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("14362", "1644", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("14363", "1644", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("14364", "1644", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("14365", "1644", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("14366", "1644", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("14367", "1644", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("14368", "1644", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("14369", "1644", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("14370", "1644", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("14371", "1644", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("14372", "1644", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("14373", "1644", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("14374", "1644", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("14375", "1644", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("14376", "1644", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("14377", "1644", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("14378", "1644", "vc_teaser", "a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("14445", "1650", "_wp_attached_file", "2015/01/waterhousenew2.jpg");
INSERT INTO `wp_postmeta` VALUES("14446", "1650", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1640;s:6:\"height\";i:704;s:4:\"file\";s:26:\"2015/01/waterhousenew2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-600x258.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"waterhousenew2-1170x502.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:502;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:26:\"waterhousenew2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"waterhousenew2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("14635", "1679", "_wp_attached_file", "2014/12/citybg-1new2.jpg");
INSERT INTO `wp_postmeta` VALUES("14636", "1679", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1125;s:4:\"file\";s:24:\"2014/12/citybg-1new2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-150x150.jpg\";s:5:\"width\";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:\"citybg-1new2-600x460.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"citybg-1new2-1170x898.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:898;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"citybg-1new2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"citybg-1new2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("14982", "1226", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("14988", "1228", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15007", "245", "_thumbnail_id", "3145");
INSERT INTO `wp_postmeta` VALUES("15030", "1097", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15040", "1099", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15048", "1102", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15071", "1095", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15086", "1232", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15126", "1213", "cs_portfolio_about_project", "");
INSERT INTO `wp_postmeta` VALUES("15134", "1843", "_wp_attached_file", "2014/12/08_used.jpg");
INSERT INTO `wp_postmeta` VALUES("15135", "1843", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:999;s:4:\"file\";s:19:\"2014/12/08_used.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"08_used-150x150.jpg\";s:5:\"width\";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:\"08_used-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"08_used-1170x779.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:779;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"08_used-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"08_used-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"08_used-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"08_used-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"08_used-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"08_used-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"08_used-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"08_used-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("15139", "1849", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:901;s:4:\"file\";s:19:\"2014/12/idea1bg.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"idea1bg-150x150.jpg\";s:5:\"width\";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:\"idea1bg-600x369.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"idea1bg-1170x719.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"idea1bg-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"idea1bg-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"idea1bg-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"idea1bg-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"idea1bg-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"idea1bg-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"idea1bg-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"idea1bg-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("40736", "391", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("40709", "394", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("40710", "394", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("40711", "394", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("40712", "394", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("40713", "394", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("40714", "394", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("40715", "394", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("40716", "385", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("40717", "385", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("40718", "385", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("40719", "385", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("40720", "385", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("40721", "385", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("40722", "385", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("40723", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("40724", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("40725", "396", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("40726", "396", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("40727", "396", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("40728", "396", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("40729", "396", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("40730", "391", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("40731", "391", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("40732", "391", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("40733", "391", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("40734", "391", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("40735", "391", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("40708", "3201", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("40706", "3201", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("40707", "3201", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("19885", "3393", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19884", "3393", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("19883", "3393", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("15559", "726", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52035", "17605", "cs_custom_logo_sticky", "0");
INSERT INTO `wp_postmeta` VALUES("52036", "17605", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("52037", "17605", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("52038", "17605", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("52039", "17605", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("52040", "17605", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("52041", "17605", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("52042", "17605", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("52043", "17605", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52044", "17605", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("52045", "17605", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("52046", "17605", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("52047", "17605", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("52048", "17605", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("52197", "17607", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52196", "17607", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52195", "17607", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("52194", "17607", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("52193", "17607", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52192", "17607", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52191", "17607", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("52190", "17607", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("52189", "17607", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("52188", "17607", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("52187", "17607", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("52186", "17607", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("52200", "17607", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52184", "17607", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("52183", "17607", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("52182", "17607", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("52181", "17607", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("52180", "17607", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52179", "17607", "_menu_item_object_id", "17605");
INSERT INTO `wp_postmeta` VALUES("52178", "17607", "_menu_item_menu_item_parent", "17470");
INSERT INTO `wp_postmeta` VALUES("52177", "17607", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("52176", "17605", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("52175", "17605", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("52174", "17605", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("52173", "17605", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("52172", "17605", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("52171", "17605", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("52170", "17605", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("52169", "17605", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("16181", "240", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("16180", "243", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("40677", "16720", "_form", "<div class=\"row\" style=\"margin-bottom: 0px;\">\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\n	</div>\n</div>\n<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center\">\n[submit \"Submit\"]\n</div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("16008", "2061", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("16009", "2061", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16010", "2061", "_menu_item_object_id", "2061");
INSERT INTO `wp_postmeta` VALUES("16011", "2061", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("16012", "2061", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16013", "2061", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16014", "2061", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16015", "2061", "_menu_item_url", "#about");
INSERT INTO `wp_postmeta` VALUES("16017", "2061", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("16018", "2061", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("16019", "2061", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("16020", "2061", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("16021", "2061", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("16022", "2061", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("16023", "2061", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("16024", "2061", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("16025", "2061", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("16026", "2061", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("16027", "2061", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("16028", "2061", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16029", "2061", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("16030", "2061", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("16031", "2062", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("16032", "2062", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16033", "2062", "_menu_item_object_id", "2062");
INSERT INTO `wp_postmeta` VALUES("16034", "2062", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("16035", "2062", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16036", "2062", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16037", "2062", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16038", "2062", "_menu_item_url", "#ideas");
INSERT INTO `wp_postmeta` VALUES("16040", "2062", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("16041", "2062", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("16042", "2062", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("16043", "2062", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("16044", "2062", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("16045", "2062", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("16046", "2062", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("16047", "2062", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("16048", "2062", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("16049", "2062", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("16050", "2062", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("16051", "2062", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16052", "2062", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("16053", "2062", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("16054", "2063", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("16055", "2063", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16056", "2063", "_menu_item_object_id", "2063");
INSERT INTO `wp_postmeta` VALUES("16057", "2063", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("16058", "2063", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16059", "2063", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16060", "2063", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16061", "2063", "_menu_item_url", "#our-work");
INSERT INTO `wp_postmeta` VALUES("16063", "2063", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("16064", "2063", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("16065", "2063", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("16066", "2063", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("16067", "2063", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("16068", "2063", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("16069", "2063", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("16070", "2063", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("16071", "2063", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("16072", "2063", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("16073", "2063", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("16074", "2063", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16075", "2063", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("16076", "2063", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("16077", "2064", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("16078", "2064", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16079", "2064", "_menu_item_object_id", "2064");
INSERT INTO `wp_postmeta` VALUES("16080", "2064", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("16081", "2064", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16082", "2064", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16083", "2064", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16084", "2064", "_menu_item_url", "#skills");
INSERT INTO `wp_postmeta` VALUES("16086", "2064", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("16087", "2064", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("16088", "2064", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("16089", "2064", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("16090", "2064", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("16091", "2064", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("16092", "2064", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("16093", "2064", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("16094", "2064", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("16095", "2064", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("16096", "2064", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("16097", "2064", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16098", "2064", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("16099", "2064", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("16100", "2065", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("16101", "2065", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16102", "2065", "_menu_item_object_id", "2065");
INSERT INTO `wp_postmeta` VALUES("16103", "2065", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("16104", "2065", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16105", "2065", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16106", "2065", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16107", "2065", "_menu_item_url", "#clients");
INSERT INTO `wp_postmeta` VALUES("16109", "2065", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("16110", "2065", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("16111", "2065", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("16112", "2065", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("16113", "2065", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("16114", "2065", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("16115", "2065", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("16116", "2065", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("16117", "2065", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("16118", "2065", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("16119", "2065", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("16120", "2065", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16121", "2065", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("16122", "2065", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("16123", "2066", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("16124", "2066", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("16125", "2066", "_menu_item_object_id", "2066");
INSERT INTO `wp_postmeta` VALUES("16126", "2066", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("16127", "2066", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("16128", "2066", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("16129", "2066", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("16130", "2066", "_menu_item_url", "#blog");
INSERT INTO `wp_postmeta` VALUES("16132", "2066", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("16133", "2066", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("16134", "2066", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("16135", "2066", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("16136", "2066", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("16137", "2066", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("16138", "2066", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("16139", "2066", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("16140", "2066", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("16141", "2066", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("16142", "2066", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("16143", "2066", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("16144", "2066", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("16145", "2066", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("16146", "2069", "_wp_attached_file", "2015/02/MasterSlide2.jpg");
INSERT INTO `wp_postmeta` VALUES("16147", "2069", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:713;s:4:\"file\";s:24:\"2015/02/MasterSlide2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-150x150.jpg\";s:5:\"width\";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:\"MasterSlide2-600x292.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"MasterSlide2-1170x569.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"MasterSlide2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"MasterSlide2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("16164", "2110", "_wp_attached_file", "2015/02/bg-slider4.jpg");
INSERT INTO `wp_postmeta` VALUES("16165", "2110", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1238;s:4:\"file\";s:22:\"2015/02/bg-slider4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-slider4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-slider4-600x507.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-slider4-1170x988.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"bg-slider4-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"bg-slider4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"bg-slider4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"bg-slider4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"bg-slider4-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"bg-slider4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"bg-slider4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"bg-slider4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("16166", "2112", "_wp_attached_file", "2015/02/freelancersoftbg.jpg");
INSERT INTO `wp_postmeta` VALUES("16167", "2112", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1466;s:6:\"height\";i:1082;s:4:\"file\";s:28:\"2015/02/freelancersoftbg.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-150x150.jpg\";s:5:\"width\";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:\"freelancersoftbg-600x443.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"freelancersoftbg-1170x864.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:28:\"freelancersoftbg-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:26:\"freelancersoftbg-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("16178", "2118", "_wp_attached_file", "2015/02/desktop.png");
INSERT INTO `wp_postmeta` VALUES("16179", "2118", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:959;s:6:\"height\";i:276;s:4:\"file\";s:19:\"2015/02/desktop.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"desktop-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"desktop-600x173.png\";s:5:\"width\";i:600;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"desktop-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"desktop-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"desktop-460x276.png\";s:5:\"width\";i:460;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"desktop-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"desktop-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"desktop-940x276.png\";s:5:\"width\";i:940;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"desktop-700x276.png\";s:5:\"width\";i:700;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"desktop-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("16189", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("16183", "244", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("16182", "242", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("16184", "2138", "_wp_attached_file", "2014/12/download.jpg");
INSERT INTO `wp_postmeta` VALUES("16185", "2138", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:20:\"2014/12/download.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"download-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"download-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"download-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"download-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"download-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"download-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"download-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"download-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"download-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"download-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"download-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("16186", "2139", "_wp_attached_file", "2014/12/download-1.jpg");
INSERT INTO `wp_postmeta` VALUES("16187", "2139", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:22:\"2014/12/download-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"download-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"download-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"download-1-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"download-1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"download-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"download-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"download-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"download-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"download-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"download-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"download-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("16188", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("16190", "635", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("16191", "635", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("16192", "238", "cs_portfolio_text_intro", "Unto given. Won\'t blessed subdue made signs form life midst stars spirit kind whales them dry day made one waters grass. Female heaven seasons you lights.");
INSERT INTO `wp_postmeta` VALUES("16193", "239", "cs_portfolio_text_intro", "Integrate pitch deck prototype earned media thought leader user story personas waterfall is so 2000 and late earned media innovate. Prototype responsive pitch deck ideate long shadow iterate pair programming user centered design Space");
INSERT INTO `wp_postmeta` VALUES("16194", "240", "_wpb_shortcodes_custom_css", ".vc_custom_1423501181076{padding-bottom: 30px !important;}");
INSERT INTO `wp_postmeta` VALUES("16195", "241", "cs_portfolio_text_intro", "");
INSERT INTO `wp_postmeta` VALUES("16196", "2155", "_wp_attached_file", "2015/02/homeoffice1.jpg");
INSERT INTO `wp_postmeta` VALUES("16197", "2155", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1523;s:4:\"file\";s:23:\"2015/02/homeoffice1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"homeoffice1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"homeoffice1-600x476.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:476;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"homeoffice1-1170x928.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:928;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:23:\"homeoffice1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:23:\"homeoffice1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:23:\"homeoffice1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:23:\"homeoffice1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:23:\"homeoffice1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:23:\"homeoffice1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:23:\"homeoffice1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:21:\"homeoffice1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("48138", "17274", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("16404", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("16405", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("48137", "17274", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("48135", "17274", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("48136", "17274", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("16873", "2488", "_wp_attached_file", "2015/01/office2.jpg");
INSERT INTO `wp_postmeta` VALUES("16874", "2488", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:532;s:4:\"file\";s:19:\"2015/01/office2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"office2-150x150.jpg\";s:5:\"width\";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:\"office2-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"office2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"office2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:19:\"office2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"office2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"office2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:19:\"office2-800x400.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:19:\"office2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"office2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("16888", "1095", "cs_portfolio_text_intro", "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo");
INSERT INTO `wp_postmeta` VALUES("16889", "1097", "cs_portfolio_text_intro", "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.");
INSERT INTO `wp_postmeta` VALUES("16890", "1099", "cs_portfolio_text_intro", "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.");
INSERT INTO `wp_postmeta` VALUES("16891", "1102", "cs_portfolio_text_intro", "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.");
INSERT INTO `wp_postmeta` VALUES("19882", "3393", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("19881", "3393", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:38:\"WP EXO Theme <wordpress@192.168.1.110>\";s:4:\"body\";s:116:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("49253", "17472", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("49252", "17472", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49251", "17472", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49250", "17472", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49249", "17472", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49248", "17472", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49247", "17472", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49246", "17472", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49245", "17472", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("49244", "17472", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49243", "17472", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("49242", "17472", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49236", "17472", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("49237", "17472", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("49235", "17472", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("49234", "17472", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("49233", "17472", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("17149", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("17150", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("17151", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("17152", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("48134", "17274", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("19879", "3393", "_form", "<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[text subject]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\n	</div>\n</div>\n<div class=\"row\">\n      <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center\">\n             [submit class:btn class:btn-primary \"Submit\"]\n      </div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("19880", "3393", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"[your-name] <wordpress@192.168.1.110>\";s:4:\"body\";s:174:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("52710", "17690", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52657", "18", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("52658", "18", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("52659", "18", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("52660", "18", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("52661", "18", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("52662", "18", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("52663", "18", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("52664", "18", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("52665", "18", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("52666", "18", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52667", "18", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("52668", "18", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("52669", "18", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("52670", "18", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("52671", "18", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("52672", "18", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("52673", "18", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("52674", "18", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("52675", "18", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("52676", "18", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("52677", "18", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("52678", "18", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("52679", "18", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("52680", "18", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("52681", "18", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("52682", "18", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("52683", "18", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("52684", "16023", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("52685", "16023", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("52686", "16023", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("52687", "16023", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("52688", "17690", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("52689", "17690", "_menu_item_menu_item_parent", "17487");
INSERT INTO `wp_postmeta` VALUES("52690", "17690", "_menu_item_object_id", "17490");
INSERT INTO `wp_postmeta` VALUES("52691", "17690", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52692", "17690", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("52693", "17690", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("52694", "17690", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("52695", "17690", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("52711", "17690", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52697", "17690", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("52698", "17690", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("52699", "17690", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("52700", "17690", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("52701", "17690", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("52702", "17690", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("52703", "17690", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52704", "17690", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52705", "17690", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("52706", "17690", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("52707", "17690", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52708", "17690", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52709", "17690", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("52656", "17261", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52655", "17261", "_wp_trash_meta_time", "1451487488");
INSERT INTO `wp_postmeta` VALUES("52654", "17261", "_wp_trash_meta_status", "draft");
INSERT INTO `wp_postmeta` VALUES("52198", "17607", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("52199", "17607", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52167", "17605", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("52168", "17605", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("52165", "17605", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("52166", "17605", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("52164", "17605", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("52163", "17605", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("52162", "17605", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("52161", "17605", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("52158", "17605", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("52159", "17605", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("52160", "17605", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("52157", "17605", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("52155", "17605", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("52156", "17605", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("52154", "17605", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("52153", "17605", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("52152", "17605", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("52150", "17605", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("52151", "17605", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("52149", "17605", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("52148", "17605", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("52147", "17605", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("52145", "17605", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("52146", "17605", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("52144", "17605", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("52143", "17605", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("52142", "17605", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("52141", "17605", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("52140", "17605", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("52139", "17605", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("52138", "17605", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("52137", "17605", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("52136", "17605", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("52135", "17605", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("52134", "17605", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("52133", "17605", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("52132", "17605", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("52131", "17605", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("52130", "17605", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("52129", "17605", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("52128", "17605", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("52127", "17605", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("52126", "17605", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("52125", "17605", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("52124", "17605", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("52123", "17605", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("52122", "17605", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("52121", "17605", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("52120", "17605", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("52119", "17605", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("52118", "17605", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("52117", "17605", "value", "");
INSERT INTO `wp_postmeta` VALUES("52116", "17605", "price", "");
INSERT INTO `wp_postmeta` VALUES("52114", "17605", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("52115", "17605", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("18078", "1106", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18255", "76", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18256", "76", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18257", "76", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18258", "76", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18259", "76", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18260", "76", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18261", "76", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18262", "76", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18263", "76", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18264", "76", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18265", "76", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18266", "76", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18267", "76", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18268", "76", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18269", "76", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18270", "76", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18271", "76", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18272", "76", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18273", "76", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18274", "76", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18275", "76", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18276", "76", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18277", "76", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18278", "76", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18279", "76", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18280", "76", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18281", "76", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18282", "1109", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18283", "1113", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52432", "17633", "_wp_attached_file", "2014/12/client-logo-1.png");
INSERT INTO `wp_postmeta` VALUES("18315", "35", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18316", "35", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18317", "35", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18318", "35", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18319", "35", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18320", "35", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18321", "35", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18322", "35", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18323", "35", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18324", "35", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18325", "35", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18326", "35", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18327", "35", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18328", "35", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18329", "35", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18330", "35", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18331", "35", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18332", "35", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18333", "35", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18334", "35", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18335", "35", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18336", "35", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18337", "35", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18338", "35", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18339", "35", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18340", "35", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18341", "35", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18342", "35", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18343", "35", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50882", "17517", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("50881", "17517", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50880", "17517", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50879", "17517", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("50878", "17517", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("50877", "17517", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("50875", "17517", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("50876", "17517", "_menu_item_widget_area", "Megamenu");
INSERT INTO `wp_postmeta` VALUES("50874", "17517", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("50888", "17517", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50872", "17517", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("50871", "17517", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("50870", "17517", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("50869", "17517", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("50868", "17517", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("50867", "17517", "_menu_item_object_id", "17517");
INSERT INTO `wp_postmeta` VALUES("50866", "17517", "_menu_item_menu_item_parent", "17512");
INSERT INTO `wp_postmeta` VALUES("50865", "17517", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("18368", "46", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18369", "46", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18370", "46", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18371", "46", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18372", "46", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18373", "46", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18374", "46", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18375", "46", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18376", "46", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18377", "46", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18378", "46", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18379", "46", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18380", "46", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18381", "46", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18382", "46", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18383", "46", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18384", "46", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18385", "46", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18386", "46", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18387", "46", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18388", "46", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18389", "46", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18390", "46", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18391", "46", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18392", "46", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18393", "46", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18394", "46", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18395", "46", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18396", "46", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18397", "3051", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("18398", "3051", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("18399", "3051", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("18400", "3051", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18401", "3051", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("18402", "3051", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("18403", "3051", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("18404", "3051", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("18405", "3051", "cs_onepage", "0");
INSERT INTO `wp_postmeta` VALUES("18406", "3051", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("18407", "3051", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("18408", "3051", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("18409", "3051", "cs_row_navigation", "0");
INSERT INTO `wp_postmeta` VALUES("18410", "3051", "cs_row_navigation_top", "0");
INSERT INTO `wp_postmeta` VALUES("18411", "3051", "cs_row_navigation_bottom", "0");
INSERT INTO `wp_postmeta` VALUES("18412", "3051", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("18413", "3051", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("18414", "3051", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("18415", "3051", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("18416", "3051", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("18417", "3051", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("18418", "3051", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("18419", "3051", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("18420", "3051", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("18421", "3051", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("18422", "3051", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("18423", "3051", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("18424", "3051", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("18425", "3051", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("18426", "3051", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("18427", "3051", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("18428", "3051", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("18429", "3051", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("18430", "3051", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("18431", "3051", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("18432", "3051", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("18433", "3051", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("18434", "3051", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("18435", "3051", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("18436", "3051", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("18437", "3051", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("18438", "3051", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("18439", "3051", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("18440", "3051", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("18441", "3051", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("18442", "3051", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("18443", "3051", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("18444", "3051", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("18445", "3051", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("18446", "3051", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("18447", "3051", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("18448", "3051", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("18449", "3051", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("18450", "3051", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("18451", "3051", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("18452", "3051", "cs_page_title_setting", "0");
INSERT INTO `wp_postmeta` VALUES("18453", "3051", "cs_page_title_enable", "1");
INSERT INTO `wp_postmeta` VALUES("18454", "3051", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("18455", "3051", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("18456", "3051", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("18457", "3051", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("18458", "3051", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("18459", "3051", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("18460", "3051", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("18461", "3051", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("18462", "3051", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("18463", "3051", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("18464", "3051", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("18465", "3051", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("18466", "3051", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("18467", "3051", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("18468", "3051", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("18469", "3051", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("18470", "3051", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("18471", "3051", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("18472", "3051", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("18473", "3051", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("18474", "3051", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("18475", "3051", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("18476", "3051", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("18477", "3051", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("18478", "3051", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("18479", "3051", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("18480", "3051", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("18481", "3051", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("18482", "3051", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("18483", "3051", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("18484", "3051", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("18485", "3051", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("18486", "3051", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("18487", "3051", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("18488", "3051", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("18489", "3051", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("18490", "3051", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("18491", "3051", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("18492", "3051", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("18493", "3051", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("18494", "3051", "price", "");
INSERT INTO `wp_postmeta` VALUES("18495", "3051", "value", "");
INSERT INTO `wp_postmeta` VALUES("18496", "3051", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("18497", "3051", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("18498", "3051", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("18499", "3051", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("18500", "3051", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("18501", "3051", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("18502", "3051", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("18503", "3051", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("18504", "3051", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("18505", "3051", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("18506", "3051", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("18507", "3051", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("18508", "3051", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("18509", "3051", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("18510", "3051", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("18511", "3051", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("18512", "3051", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("18513", "3051", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("18514", "3051", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("18515", "3051", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("18516", "3051", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("18517", "3051", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("18518", "3051", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("18519", "3051", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18520", "3051", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("18521", "3051", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("18522", "3051", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("18523", "3051", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18524", "3051", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("18525", "3051", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("18526", "3051", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("18527", "3051", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("18528", "3051", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("18529", "3051", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("18530", "3051", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18531", "3051", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18532", "3051", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18533", "3051", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18534", "3051", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18535", "3051", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18536", "3051", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18537", "3051", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18538", "3051", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18539", "3051", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18540", "3051", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18541", "3051", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18542", "3051", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18543", "3051", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18544", "3051", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18545", "3051", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18546", "3051", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18547", "3051", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18548", "3051", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18549", "3051", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18550", "3051", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18551", "3051", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18552", "3051", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18553", "3051", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18554", "3051", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18555", "3051", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18556", "3051", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18557", "3051", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18558", "3051", "_edit_lock", "1452187264:1");
INSERT INTO `wp_postmeta` VALUES("18559", "47", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18560", "47", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18561", "47", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18562", "47", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18563", "47", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18564", "47", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18565", "47", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18566", "47", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18567", "47", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18568", "47", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18569", "47", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18570", "47", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18571", "47", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18572", "47", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18573", "47", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18574", "47", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18575", "47", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18576", "47", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18577", "47", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18578", "47", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18579", "47", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18580", "47", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18581", "47", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18582", "47", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18583", "47", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18584", "47", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18585", "47", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18586", "47", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18587", "47", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("19877", "3389", "_wp_attached_file", "2015/06/corpslide2.jpg");
INSERT INTO `wp_postmeta` VALUES("19878", "3389", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:730;s:4:\"file\";s:22:\"2015/06/corpslide2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"corpslide2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"corpslide2-600x292.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"corpslide2-1170x569.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"corpslide2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"corpslide2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"corpslide2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"corpslide2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"corpslide2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"corpslide2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"corpslide2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"corpslide2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("18598", "726", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18661", "48", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18662", "48", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18663", "48", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18664", "48", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18665", "48", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18666", "48", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18667", "48", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18668", "48", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18669", "48", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18670", "48", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18671", "48", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18672", "48", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18673", "48", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18674", "48", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18675", "48", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18676", "48", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18677", "48", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18678", "48", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18679", "48", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18680", "48", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18681", "48", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18682", "48", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18683", "48", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18684", "48", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18685", "48", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18686", "48", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18687", "48", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18688", "48", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18689", "48", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18691", "49", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18692", "49", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18693", "49", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18694", "49", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18695", "49", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18696", "49", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18697", "49", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18698", "49", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18699", "49", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18700", "49", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18701", "49", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18702", "49", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18703", "49", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18704", "49", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18705", "49", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18706", "49", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18707", "49", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18708", "49", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18709", "49", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18710", "49", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18711", "49", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18712", "49", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18713", "49", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18714", "49", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18715", "49", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18716", "49", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18717", "49", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18718", "49", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18719", "49", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18720", "50", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18721", "50", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18722", "50", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18723", "50", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18724", "50", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18725", "50", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18726", "50", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18727", "50", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18728", "50", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18729", "50", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18730", "50", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18731", "50", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18732", "50", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18733", "50", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18734", "50", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18735", "50", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18736", "50", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18737", "50", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18738", "50", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18739", "50", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18740", "50", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18741", "50", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18742", "50", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18743", "50", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18744", "50", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18745", "50", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18746", "50", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18747", "50", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18748", "50", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18749", "51", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18750", "51", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18751", "51", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18752", "51", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18753", "51", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18754", "51", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18755", "51", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18756", "51", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18757", "51", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18758", "51", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18759", "51", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18760", "51", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18761", "51", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18762", "51", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18763", "51", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18764", "51", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18765", "51", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18766", "51", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18767", "51", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18768", "51", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18769", "51", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18770", "51", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18771", "51", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18772", "51", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18773", "51", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18774", "51", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18775", "51", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18776", "51", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18777", "51", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("18778", "52", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("18779", "52", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("18780", "52", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("18781", "52", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("18782", "52", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("18783", "52", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("18784", "52", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("18785", "52", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("18786", "52", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("18787", "52", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("18788", "52", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18789", "52", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18790", "52", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18791", "52", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18792", "52", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("18793", "52", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("18794", "52", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("18795", "52", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("18796", "52", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("18797", "52", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("18798", "52", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("18799", "52", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("18800", "52", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("18801", "52", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("18802", "52", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("18803", "52", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("18804", "52", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("18805", "52", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("18806", "52", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("48132", "17274", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("48133", "17274", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19069", "238", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19070", "238", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("19071", "238", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19072", "238", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("19073", "238", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19074", "238", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("19075", "238", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("19076", "238", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19077", "238", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19080", "242", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19081", "242", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("19082", "242", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19083", "242", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("19084", "242", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19085", "242", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("19086", "242", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("19087", "242", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19088", "242", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19091", "243", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19092", "243", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("19093", "243", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19094", "243", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("19095", "243", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19096", "243", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("19097", "243", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("19098", "243", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19099", "243", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19102", "244", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19103", "244", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("19104", "244", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19105", "244", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("19106", "244", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19107", "244", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("19108", "244", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("19109", "244", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19110", "244", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19113", "245", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19114", "245", "cs_portfolio_text_intro", "Integrate pitch deck prototype earned media thought leader user story personas waterfall is so 2000 and late earned media innovate. Prototype responsive pitch deck ideate long shadow iterate pair programming user centered design Space");
INSERT INTO `wp_postmeta` VALUES("19115", "245", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("19116", "245", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19117", "245", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("19118", "245", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19119", "245", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("19120", "245", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("19121", "245", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19122", "245", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19127", "239", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19128", "239", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("19129", "239", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19130", "239", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("19131", "239", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("19132", "239", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("19133", "239", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("19134", "239", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19135", "239", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19136", "3145", "_wp_attached_file", "2014/12/preview6.jpg");
INSERT INTO `wp_postmeta` VALUES("19137", "3145", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:875;s:4:\"file\";s:20:\"2014/12/preview6.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"preview6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"preview6-600x547.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"preview6-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"preview6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"preview6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"preview6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"preview6-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"preview6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"preview6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"preview6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:13:{i:0;s:9:\"650x450_c\";i:1;s:9:\"400x420_c\";i:2;s:9:\"650x650_c\";i:3;s:9:\"350x350_c\";i:4;s:9:\"300x300_c\";i:5;s:9:\"300x200_c\";i:6;s:9:\"300x220_c\";i:7;s:9:\"550x400_c\";i:8;s:9:\"600x450_c\";i:9;s:9:\"600x550_c\";i:10;s:9:\"600x400_c\";i:11;s:9:\"500x300_c\";i:12;s:9:\"500x350_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("52713", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("52714", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("52716", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("52717", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("52719", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("52720", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("52722", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("52723", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("52725", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("52726", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("19204", "3201", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("19205", "3201", "_edit_lock", "1437128663:1");
INSERT INTO `wp_postmeta` VALUES("19206", "3201", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19207", "3201", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("19208", "3201", "_wpb_shortcodes_custom_css", ".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1437126739055{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}.vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}.vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}.vc_custom_1434362037076{padding-top: 40px !important;padding-bottom: 100px !important;}");
INSERT INTO `wp_postmeta` VALUES("19201", "3051", "_wpb_shortcodes_custom_css", ".vc_custom_1435328170526{margin-top: -80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}.vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}.vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}.vc_custom_1434705714414{padding-top: 80px !important;padding-bottom: 80px !important;}");
INSERT INTO `wp_postmeta` VALUES("19185", "657", "_thumbnail_id", "2488");
INSERT INTO `wp_postmeta` VALUES("19179", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("19180", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("19181", "657", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19182", "657", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("19183", "657", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19184", "657", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19186", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("19187", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("19264", "3201", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("19209", "3201", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("19210", "3201", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("19211", "3201", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("19212", "3201", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("19213", "3201", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("19214", "3201", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("19215", "3201", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("19216", "3201", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("19217", "3201", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19218", "3201", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("19219", "3201", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("19220", "3201", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("19221", "3201", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("19222", "3201", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("19223", "3201", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("19224", "3201", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("19225", "3201", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("19226", "3201", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("19227", "3201", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("19228", "3201", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("19229", "3201", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("19230", "3201", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("19231", "3201", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("19232", "3201", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("19233", "3201", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("19234", "3201", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("19235", "3201", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("19236", "3201", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("19237", "3201", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("19238", "3201", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("19239", "3201", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("19240", "3201", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("19241", "3201", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("19242", "3201", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("19243", "3201", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("19244", "3201", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("19245", "3201", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("19246", "3201", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("19247", "3201", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("19248", "3201", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("19249", "3201", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("19250", "3201", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("19251", "3201", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("19252", "3201", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("19253", "3201", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("19254", "3201", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19255", "3201", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19256", "3201", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19257", "3201", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19258", "3201", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("19259", "3201", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19260", "3201", "cs_page_title_setting", "0");
INSERT INTO `wp_postmeta` VALUES("19261", "3201", "cs_page_title_enable", "1");
INSERT INTO `wp_postmeta` VALUES("19262", "3201", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("19263", "3201", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("19265", "3201", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("19266", "3201", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("19267", "3201", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("19268", "3201", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("19269", "3201", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("19270", "3201", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("19271", "3201", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("19272", "3201", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("19273", "3201", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("19274", "3201", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("19275", "3201", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("19276", "3201", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("19277", "3201", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("19278", "3201", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("19279", "3201", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("19280", "3201", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("19281", "3201", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("19282", "3201", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("19283", "3201", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("19284", "3201", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("19285", "3201", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("19286", "3201", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("19287", "3201", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("19288", "3201", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("19289", "3201", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("19290", "3201", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("19291", "3201", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("19292", "3201", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("19293", "3201", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("19294", "3201", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("19295", "3201", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("19296", "3201", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("19297", "3201", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("19298", "3201", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("19299", "3201", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("19300", "3201", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("19301", "3201", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("19302", "3201", "price", "");
INSERT INTO `wp_postmeta` VALUES("19303", "3201", "value", "");
INSERT INTO `wp_postmeta` VALUES("19304", "3201", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("19305", "3201", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("19306", "3201", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("19307", "3201", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("19308", "3201", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("19309", "3201", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("19310", "3201", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("19311", "3201", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("19312", "3201", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("19313", "3201", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("19314", "3201", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("19315", "3201", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("19316", "3201", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("19317", "3201", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("19318", "3201", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("19319", "3201", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("19320", "3201", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("19321", "3201", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("19322", "3201", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("19323", "3201", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("19324", "3201", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("19325", "3201", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("19326", "3201", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("19327", "3201", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("19328", "3201", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("19329", "3201", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("19330", "3201", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("19331", "3201", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("19332", "3201", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("19333", "3201", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("19334", "3201", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("19335", "3201", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("19336", "3201", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("19337", "3201", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("19338", "3201", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("19339", "3201", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("19340", "3201", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("19341", "3201", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("19342", "3201", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("19343", "3201", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19344", "3201", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("19345", "3201", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("19346", "3201", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("19347", "3201", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19348", "3201", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19349", "3201", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19350", "3201", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19351", "3201", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19352", "3201", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("19353", "3201", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("19354", "3201", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("19355", "3201", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("19356", "3201", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("19357", "3201", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("19358", "3201", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("19359", "3201", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("19360", "3201", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("19361", "3201", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("19362", "3201", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("19363", "3201", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("19364", "3201", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("19365", "3201", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("19366", "3201", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19751", "3295", "_wp_attached_file", "2015/06/fx01.png");
INSERT INTO `wp_postmeta` VALUES("19752", "3295", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:234;s:6:\"height\";i:156;s:4:\"file\";s:16:\"2015/06/fx01.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fx01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"fx01-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"fx01-220x156.png\";s:5:\"width\";i:220;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"fx01-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"300x200_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("19753", "3296", "_wp_attached_file", "2015/06/fx02.jpg");
INSERT INTO `wp_postmeta` VALUES("19754", "3296", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:235;s:6:\"height\";i:156;s:4:\"file\";s:16:\"2015/06/fx02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fx02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"fx02-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"fx02-220x156.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"fx02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"300x200_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("19755", "3297", "_wp_attached_file", "2015/06/fx03.png");
INSERT INTO `wp_postmeta` VALUES("19756", "3297", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:234;s:6:\"height\";i:156;s:4:\"file\";s:16:\"2015/06/fx03.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fx03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"fx03-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"fx03-220x156.png\";s:5:\"width\";i:220;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"fx03-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:4:{i:0;s:9:\"300x200_c\";i:1;s:7:\"88x88_c\";i:2;s:9:\"100x100_c\";i:3;s:7:\"90x90_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("21966", "1644", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21967", "1644", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21968", "1644", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("19757", "3298", "_wp_attached_file", "2015/06/fx04.png");
INSERT INTO `wp_postmeta` VALUES("19758", "3298", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:235;s:6:\"height\";i:156;s:4:\"file\";s:16:\"2015/06/fx04.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"fx04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"fx04-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"fx04-220x156.png\";s:5:\"width\";i:220;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"fx04-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"300x200_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("48131", "17274", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19775", "3342", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("19776", "3342", "_edit_lock", "1453130653:1");
INSERT INTO `wp_postmeta` VALUES("19777", "3342", "_thumbnail_id", "3297");
INSERT INTO `wp_postmeta` VALUES("19778", "3342", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("19779", "3342", "price", "");
INSERT INTO `wp_postmeta` VALUES("19780", "3342", "value", "");
INSERT INTO `wp_postmeta` VALUES("19781", "3342", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("19782", "3342", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("19783", "3342", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("19784", "3342", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("19785", "3342", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("19786", "3342", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("19787", "3342", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("19788", "3342", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("19789", "3342", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("19790", "3342", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("19791", "3342", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("19792", "3342", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("19793", "3342", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("19794", "3342", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("19795", "3342", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("19796", "3342", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("19797", "3342", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("19798", "3342", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("19799", "3342", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("19800", "3342", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("19801", "3342", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("19802", "3342", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("19803", "3342", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("19804", "3342", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("19805", "3342", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("19806", "3342", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("19807", "3342", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("19808", "3342", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("19809", "3342", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("19810", "3342", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("19811", "3342", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("19812", "3342", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("19813", "3342", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("19814", "3342", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("19815", "3342", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("19816", "3342", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("19817", "3342", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("19818", "3342", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("19819", "3342", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("19820", "3342", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("19821", "3342", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("19822", "3342", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("19823", "3342", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("19824", "3342", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19825", "3342", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19826", "3342", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19827", "3342", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19828", "3342", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("19829", "3342", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("19830", "3342", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("19831", "3342", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("19832", "3342", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("19833", "3342", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("19834", "3342", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("19835", "3342", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("19836", "3342", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("19837", "3342", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("19838", "3342", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("19839", "3342", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("19840", "3342", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("19841", "3342", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("19842", "3342", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("19958", "3503", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("19959", "3503", "_edit_lock", "1437057677:1");
INSERT INTO `wp_postmeta` VALUES("19960", "3503", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("19961", "3503", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("19963", "3503", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("19964", "3503", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("19965", "3503", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("19966", "3503", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("19967", "3503", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("19968", "3503", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("19969", "3503", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("19970", "3503", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("19971", "3503", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("19972", "3503", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("19973", "3503", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("19974", "3503", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("19975", "3503", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("19976", "3503", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("19977", "3503", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("19978", "3503", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("19979", "3503", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("19980", "3503", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("19981", "3503", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("19982", "3503", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("19983", "3503", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("19984", "3503", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("19985", "3503", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("19986", "3503", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("19987", "3503", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("19988", "3503", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("19989", "3503", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("19990", "3503", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("19991", "3503", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("19992", "3503", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("19993", "3503", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("19994", "3503", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("19995", "3503", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("19996", "3503", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("19997", "3503", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("19998", "3503", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("19999", "3503", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20000", "3503", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("20001", "3503", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("20002", "3503", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("20003", "3503", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("20004", "3503", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("20005", "3503", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("20006", "3503", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20007", "3503", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("20008", "3503", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20009", "3503", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20010", "3503", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("20011", "3503", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20012", "3503", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("20013", "3503", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20014", "3503", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20015", "3503", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20016", "3503", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20017", "3503", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("20018", "3503", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20019", "3503", "cs_page_title_setting", "0");
INSERT INTO `wp_postmeta` VALUES("20020", "3503", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("20021", "3503", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("20022", "3503", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("20023", "3503", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("20024", "3503", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("20025", "3503", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("20026", "3503", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("20027", "3503", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("20028", "3503", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("20029", "3503", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("20030", "3503", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20031", "3503", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20032", "3503", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20033", "3503", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20034", "3503", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20035", "3503", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("20036", "3503", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("20037", "3503", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("20038", "3503", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("20039", "3503", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("20040", "3503", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("20041", "3503", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("20042", "3503", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("20043", "3503", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("20044", "3503", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("20045", "3503", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("20046", "3503", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20047", "3503", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("20048", "3503", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("20049", "3503", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20050", "3503", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20051", "3503", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20052", "3503", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20053", "3503", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20054", "3503", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("20055", "3503", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("20056", "3503", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("20057", "3503", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20058", "3503", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("20059", "3503", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("20060", "3503", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20061", "3503", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("20062", "3503", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("20063", "3503", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("20064", "3503", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("20065", "3503", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("20066", "3503", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("20067", "3503", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("20068", "3503", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("20069", "3503", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("20070", "3503", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("20071", "3503", "price", "");
INSERT INTO `wp_postmeta` VALUES("20072", "3503", "value", "");
INSERT INTO `wp_postmeta` VALUES("20073", "3503", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("20074", "3503", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("20075", "3503", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("20076", "3503", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("20077", "3503", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("20078", "3503", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("20079", "3503", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("20080", "3503", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("20081", "3503", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("20082", "3503", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("20083", "3503", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("20084", "3503", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("20085", "3503", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("20086", "3503", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("20087", "3503", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("20088", "3503", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("20089", "3503", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("20090", "3503", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("20091", "3503", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("20092", "3503", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("20093", "3503", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("20094", "3503", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("20095", "3503", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("20096", "3503", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("20097", "3503", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("20098", "3503", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("20099", "3503", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("20100", "3503", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("20101", "3503", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("20102", "3503", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("20103", "3503", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("20104", "3503", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("20105", "3503", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("20106", "3503", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("20107", "3503", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("20108", "3503", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("20109", "3503", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("20110", "3503", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("20111", "3503", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("20112", "3503", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("20113", "3503", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("20114", "3503", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("20115", "3503", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("20116", "3503", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20117", "3503", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20118", "3503", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20119", "3503", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20120", "3503", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20121", "3503", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("20122", "3503", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("20123", "3503", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("20124", "3503", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("20125", "3503", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("20126", "3503", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("20127", "3503", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("20128", "3503", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("20129", "3503", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("20130", "3503", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("20131", "3503", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("20132", "3503", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("20133", "3503", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("20134", "3503", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("20135", "3503", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("20160", "3201", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20161", "3201", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20162", "3201", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("20163", "3201", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20164", "3201", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("20165", "3201", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("20166", "3201", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("20167", "3201", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("20168", "3201", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("20169", "3201", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("20170", "3201", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("20171", "3201", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20172", "3201", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("20173", "3201", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("20174", "3201", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20231", "3503", "_wpb_shortcodes_custom_css", ".vc_custom_1435924322019{padding-top: 80px !important;padding-bottom: 140px !important;}.vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}");
INSERT INTO `wp_postmeta` VALUES("40758", "1332", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("40754", "1332", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("40753", "1332", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("40752", "1332", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("40751", "1323", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("40750", "1323", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("40748", "1323", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("40749", "1323", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("40747", "1323", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("40746", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("40745", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("20415", "3623", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("20416", "3623", "_edit_lock", "1436797871:1");
INSERT INTO `wp_postmeta` VALUES("20417", "3623", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20418", "3623", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("20419", "3623", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("20420", "3623", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("20421", "3623", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("20422", "3623", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("20423", "3623", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("20424", "3623", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("20425", "3623", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("20426", "3623", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("20427", "3623", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("20428", "3623", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20429", "3623", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("20430", "3623", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("20431", "3623", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20432", "3623", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("20433", "3623", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20434", "3623", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20435", "3623", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20436", "3623", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20437", "3623", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("20438", "3623", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("20439", "3623", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("20440", "3623", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("20441", "3623", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("20442", "3623", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("20443", "3623", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("20444", "3623", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("20445", "3623", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("20446", "3623", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("20447", "3623", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("20448", "3623", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("20449", "3623", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("20450", "3623", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20451", "3623", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("20452", "3623", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20453", "3623", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20454", "3623", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20455", "3623", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20456", "3623", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20457", "3623", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("20458", "3623", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("20459", "3623", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("20460", "3623", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("20461", "3623", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("20462", "3623", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("20463", "3623", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20464", "3623", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("20465", "3623", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20466", "3623", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20467", "3623", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("20468", "3623", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20469", "3623", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("20470", "3623", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20471", "3623", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20472", "3623", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20473", "3623", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20474", "3623", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("20475", "3623", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20476", "3623", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("20477", "3623", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("20478", "3623", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("20479", "3623", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("20480", "3623", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("20481", "3623", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("20482", "3623", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("20483", "3623", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("20484", "3623", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("20485", "3623", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("20486", "3623", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("20487", "3623", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20488", "3623", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20489", "3623", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20490", "3623", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20491", "3623", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20492", "3623", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("20493", "3623", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("20494", "3623", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("20495", "3623", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("20496", "3623", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("20497", "3623", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("20498", "3623", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("20499", "3623", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("20500", "3623", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("20501", "3623", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("20502", "3623", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("20503", "3623", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20504", "3623", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("20505", "3623", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("20506", "3623", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20507", "3623", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20508", "3623", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20509", "3623", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20510", "3623", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20511", "3623", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("20512", "3623", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("20513", "3623", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("20514", "3623", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20515", "3623", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("20516", "3623", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("20517", "3623", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20518", "3623", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("20519", "3623", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("20520", "3623", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("20521", "3623", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("20522", "3623", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("20523", "3623", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("20524", "3623", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("20525", "3623", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("20526", "3623", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("20527", "3623", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("20528", "3623", "price", "");
INSERT INTO `wp_postmeta` VALUES("20529", "3623", "value", "");
INSERT INTO `wp_postmeta` VALUES("20530", "3623", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("20531", "3623", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("20532", "3623", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("20533", "3623", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("20534", "3623", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("20535", "3623", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("20536", "3623", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("20537", "3623", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("20538", "3623", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("20539", "3623", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("20540", "3623", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("20541", "3623", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("20542", "3623", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("20543", "3623", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("20544", "3623", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("20545", "3623", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("20546", "3623", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("20547", "3623", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("20548", "3623", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("20549", "3623", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("20550", "3623", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("20551", "3623", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("20552", "3623", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("20553", "3623", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("20554", "3623", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("20555", "3623", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("20556", "3623", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("20557", "3623", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("20558", "3623", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("20559", "3623", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("20560", "3623", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("20561", "3623", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("20562", "3623", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("20563", "3623", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("20564", "3623", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("20565", "3623", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("20566", "3623", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("20567", "3623", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("20568", "3623", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("20569", "3623", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("20570", "3623", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("20571", "3623", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("20572", "3623", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("20573", "3623", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20574", "3623", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20575", "3623", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20576", "3623", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20577", "3623", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("20578", "3623", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("20579", "3623", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("20580", "3623", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("20581", "3623", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("20582", "3623", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("20583", "3623", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("20584", "3623", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("20585", "3623", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("20586", "3623", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("20587", "3623", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("20588", "3623", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("20589", "3623", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("20590", "3623", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("20591", "3623", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("20946", "3629", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("20947", "3629", "_edit_lock", "1450455966:1");
INSERT INTO `wp_postmeta` VALUES("20948", "3629", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("20949", "3629", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("20950", "3629", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("20951", "3629", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("20952", "3629", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("20953", "3629", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("20954", "3629", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("20955", "3629", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("20956", "3629", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("20957", "3629", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("20958", "3629", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("20959", "3629", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("20960", "3629", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("20961", "3629", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("20962", "3629", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20963", "3629", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("20964", "3629", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20965", "3629", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20966", "3629", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20967", "3629", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20968", "3629", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("20969", "3629", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("20970", "3629", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("20971", "3629", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("20972", "3629", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("20973", "3629", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("20974", "3629", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("20975", "3629", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("20976", "3629", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("20977", "3629", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("20978", "3629", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("20979", "3629", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("20980", "3629", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("20981", "3629", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20982", "3629", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("20983", "3629", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("20984", "3629", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("20985", "3629", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("20986", "3629", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("20987", "3629", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("20988", "3629", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("20989", "3629", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("20990", "3629", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("20991", "3629", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("20992", "3629", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("20993", "3629", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("20994", "3629", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20995", "3629", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("20996", "3629", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("20997", "3629", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("20998", "3629", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("20999", "3629", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21000", "3629", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("21001", "3629", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21002", "3629", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21003", "3629", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21004", "3629", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21005", "3629", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("21006", "3629", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21007", "3629", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("21008", "3629", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("21009", "3629", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("21010", "3629", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("21011", "3629", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("21012", "3629", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("21013", "3629", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("21014", "3629", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("21015", "3629", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("21016", "3629", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("21017", "3629", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("21018", "3629", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("21019", "3629", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("21020", "3629", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("21021", "3629", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("21022", "3629", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("21023", "3629", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("21024", "3629", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("21025", "3629", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("21026", "3629", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("21027", "3629", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("21028", "3629", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("21029", "3629", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("21030", "3629", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("21031", "3629", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("21032", "3629", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("21033", "3629", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("21034", "3629", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("21035", "3629", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("21036", "3629", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("21037", "3629", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("21038", "3629", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("21039", "3629", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("21040", "3629", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("21041", "3629", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("21042", "3629", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("21043", "3629", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("21044", "3629", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("21045", "3629", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("21046", "3629", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("21047", "3629", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("21048", "3629", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21049", "3629", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("21050", "3629", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("21051", "3629", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("21052", "3629", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("21053", "3629", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("21054", "3629", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("21055", "3629", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("21056", "3629", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("21057", "3629", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("21058", "3629", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("21059", "3629", "price", "");
INSERT INTO `wp_postmeta` VALUES("21060", "3629", "value", "");
INSERT INTO `wp_postmeta` VALUES("21061", "3629", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("21062", "3629", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("21063", "3629", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("21064", "3629", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("21065", "3629", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("21066", "3629", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21067", "3629", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21068", "3629", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21069", "3629", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21070", "3629", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21071", "3629", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("21072", "3629", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("21073", "3629", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21074", "3629", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21075", "3629", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21076", "3629", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21077", "3629", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21078", "3629", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21079", "3629", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21080", "3629", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21081", "3629", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21082", "3629", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21083", "3629", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21084", "3629", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21085", "3629", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21086", "3629", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21087", "3629", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21088", "3629", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21089", "3629", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21090", "3629", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21091", "3629", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21092", "3629", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21093", "3629", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21094", "3629", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("21095", "3629", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("21096", "3629", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("21097", "3629", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("21098", "3629", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21099", "3629", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21100", "3629", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("21101", "3629", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("21102", "3629", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("21103", "3629", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("21104", "3629", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("21105", "3629", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("21106", "3629", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("21107", "3629", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("21108", "3629", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("21109", "3629", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("21110", "3629", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("21111", "3629", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("21112", "3629", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("21113", "3629", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("21114", "3629", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("21115", "3629", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("21116", "3629", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("21117", "3629", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("21118", "3629", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("21119", "3629", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("21120", "3629", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("21121", "3629", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("21122", "3629", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("21219", "3623", "_wpb_shortcodes_custom_css", ".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}.vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}.vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}.vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}.vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}");
INSERT INTO `wp_postmeta` VALUES("21905", "14227", "_form", "<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\">[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\n	</div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("21403", "9135", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21402", "9135", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21352", "9039", "option_4", "10 Domains");
INSERT INTO `wp_postmeta` VALUES("21351", "9039", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21299", "9036", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21300", "9036", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21298", "9036", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21297", "9036", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21884", "14207", "_edit_lock", "1441879926:1");
INSERT INTO `wp_postmeta` VALUES("21404", "9135", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21405", "9135", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21406", "9135", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21407", "9135", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21408", "9135", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21409", "9135", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21410", "9135", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21411", "9135", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21412", "9135", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21413", "9135", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21414", "9135", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21415", "9135", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21416", "9135", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21417", "9135", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21418", "9135", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21419", "9136", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21420", "9136", "_thumbnail_id", "3297");
INSERT INTO `wp_postmeta` VALUES("21421", "9136", "price", "29.99");
INSERT INTO `wp_postmeta` VALUES("21422", "9136", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21423", "9136", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21424", "9136", "option_2", "20GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21425", "9136", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21426", "9136", "option_4", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21427", "9136", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("21428", "9136", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21429", "9136", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21430", "9136", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21431", "9136", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21432", "9136", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21433", "9136", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21434", "9136", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21435", "9136", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21436", "9136", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21437", "9136", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21438", "9136", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21439", "9136", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21440", "9136", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21441", "9136", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21442", "9136", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21443", "9136", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21444", "9136", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21445", "9136", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21446", "9136", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21447", "9136", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21448", "9136", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21449", "9136", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21450", "9136", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21451", "9136", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21452", "9136", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21453", "9136", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21454", "9136", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21455", "9136", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21456", "9137", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21457", "9137", "_thumbnail_id", "3296");
INSERT INTO `wp_postmeta` VALUES("21458", "9137", "price", "49.99");
INSERT INTO `wp_postmeta` VALUES("21459", "9137", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21460", "9137", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21461", "9137", "option_2", "50GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21462", "9137", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21463", "9137", "option_4", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21464", "9137", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("21465", "9137", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21466", "9137", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21467", "9137", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21468", "9137", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21469", "9137", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21470", "9137", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21471", "9137", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21472", "9137", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21473", "9137", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21474", "9137", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21475", "9137", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21476", "9137", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21477", "9137", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21478", "9137", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21479", "9137", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21480", "9137", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21481", "9137", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21482", "9137", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21483", "9137", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21484", "9137", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21485", "9137", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21486", "9137", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21487", "9137", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21488", "9137", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21489", "9137", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21490", "9137", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21491", "9137", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21492", "9137", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21493", "9138", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21495", "9138", "price", "99.99");
INSERT INTO `wp_postmeta` VALUES("21496", "9138", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21497", "9138", "option_1", "Lorem ipsum dolor sit amet, consect etur adipiscing elit, sed do eius.");
INSERT INTO `wp_postmeta` VALUES("21498", "9138", "option_2", "150GB Space amount");
INSERT INTO `wp_postmeta` VALUES("21499", "9138", "option_3", "30GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("21500", "9138", "option_4", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21501", "9138", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("21502", "9138", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21503", "9138", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21504", "9138", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21505", "9138", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21506", "9138", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21507", "9138", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21508", "9138", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21509", "9138", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21510", "9138", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21511", "9138", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21512", "9138", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21513", "9138", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21514", "9138", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21515", "9138", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21516", "9138", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21517", "9138", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21518", "9138", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21519", "9138", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21520", "9138", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21521", "9138", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21522", "9138", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21523", "9138", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21524", "9138", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21525", "9138", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21526", "9138", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21527", "9138", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21528", "9138", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21529", "9138", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21530", "9163", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21531", "9163", "_thumbnail_id", "15818");
INSERT INTO `wp_postmeta` VALUES("21532", "9163", "price", "30.00");
INSERT INTO `wp_postmeta` VALUES("21533", "9163", "value", "");
INSERT INTO `wp_postmeta` VALUES("21534", "9163", "option_1", "Lorem ipsum dolor sit amet");
INSERT INTO `wp_postmeta` VALUES("21535", "9163", "option_2", "Consectetur adipiscing elit");
INSERT INTO `wp_postmeta` VALUES("21536", "9163", "option_3", "Sed do eiusmod tempor incididunt");
INSERT INTO `wp_postmeta` VALUES("21537", "9163", "option_4", "Ut labore et dolore magna aliqua");
INSERT INTO `wp_postmeta` VALUES("21538", "9163", "option_5", "Ut enim ad minim veniam");
INSERT INTO `wp_postmeta` VALUES("21539", "9163", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21540", "9163", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21541", "9163", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21542", "9163", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21543", "9163", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21544", "9163", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21545", "9163", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21546", "9163", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21547", "9163", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21548", "9163", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21549", "9163", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21550", "9163", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21551", "9163", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21552", "9163", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21553", "9163", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21554", "9163", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21555", "9163", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21556", "9163", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21557", "9163", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21558", "9163", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21559", "9163", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21560", "9163", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21561", "9163", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21562", "9163", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21563", "9163", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21564", "9163", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21565", "9163", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21566", "9163", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21567", "9163", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21568", "9164", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21569", "9164", "_thumbnail_id", "15817");
INSERT INTO `wp_postmeta` VALUES("21570", "9164", "price", "40.00");
INSERT INTO `wp_postmeta` VALUES("21571", "9164", "value", "");
INSERT INTO `wp_postmeta` VALUES("21572", "9164", "option_1", "Lorem ipsum dolor sit amet");
INSERT INTO `wp_postmeta` VALUES("21573", "9164", "option_2", "Consectetur adipiscing elit");
INSERT INTO `wp_postmeta` VALUES("21574", "9164", "option_3", "Sed do eiusmod tempor incididunt");
INSERT INTO `wp_postmeta` VALUES("21575", "9164", "option_4", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21576", "9164", "option_5", "Ut enim ad minim veniam");
INSERT INTO `wp_postmeta` VALUES("21577", "9164", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21578", "9164", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21579", "9164", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21580", "9164", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21581", "9164", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21582", "9164", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21583", "9164", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21584", "9164", "is_feature", "1");
INSERT INTO `wp_postmeta` VALUES("21585", "9164", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21586", "9164", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21587", "9164", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21588", "9164", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21589", "9164", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21590", "9164", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21591", "9164", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21592", "9164", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21593", "9164", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21594", "9164", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21595", "9164", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21596", "9164", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21597", "9164", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21598", "9164", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21599", "9164", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21600", "9164", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21601", "9164", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21602", "9164", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21603", "9164", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21604", "9164", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21605", "9164", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21606", "9166", "_thumbnail_id", "15816");
INSERT INTO `wp_postmeta` VALUES("21607", "9166", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21608", "9166", "price", "60.00");
INSERT INTO `wp_postmeta` VALUES("21609", "9166", "value", "");
INSERT INTO `wp_postmeta` VALUES("21610", "9166", "option_1", "Lorem ipsum dolor sit amet");
INSERT INTO `wp_postmeta` VALUES("21611", "9166", "option_2", "Consectetur adipiscing elit");
INSERT INTO `wp_postmeta` VALUES("21612", "9166", "option_3", "Sed do eiusmod tempor incididunt");
INSERT INTO `wp_postmeta` VALUES("21613", "9166", "option_4", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("21614", "9166", "option_5", "Ut enim ad minim veniam");
INSERT INTO `wp_postmeta` VALUES("21615", "9166", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21616", "9166", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21617", "9166", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21618", "9166", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21619", "9166", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21620", "9166", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21621", "9166", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("21622", "9166", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21623", "9166", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21624", "9166", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21625", "9166", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21626", "9166", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21627", "9166", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21628", "9166", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21629", "9166", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21630", "9166", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21631", "9166", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21632", "9166", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21633", "9166", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21634", "9166", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21635", "9166", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21636", "9166", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21637", "9166", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21638", "9166", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21639", "9166", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21640", "9166", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21641", "9166", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21642", "9166", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21643", "9166", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21644", "9206", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21645", "9206", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21646", "9206", "price", "29");
INSERT INTO `wp_postmeta` VALUES("21647", "9206", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21648", "9206", "option_1", "Including breakfast");
INSERT INTO `wp_postmeta` VALUES("21649", "9206", "option_2", "Room service");
INSERT INTO `wp_postmeta` VALUES("21650", "9206", "option_3", "Number of childrens");
INSERT INTO `wp_postmeta` VALUES("21651", "9206", "option_4", "Lunch/ dinner");
INSERT INTO `wp_postmeta` VALUES("21652", "9206", "option_5", "Parking");
INSERT INTO `wp_postmeta` VALUES("21653", "9206", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21654", "9206", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21655", "9206", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21656", "9206", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21657", "9206", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21658", "9206", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21659", "9206", "button_text", "Sign up");
INSERT INTO `wp_postmeta` VALUES("21660", "9206", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21661", "9206", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21662", "9206", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21663", "9206", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21664", "9206", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21665", "9206", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21666", "9206", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21667", "9206", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21668", "9206", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21669", "9206", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21670", "9206", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21671", "9206", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21672", "9206", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21673", "9206", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21674", "9206", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21675", "9206", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21676", "9206", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21677", "9206", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21678", "9206", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21679", "9206", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21680", "9206", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21681", "9218", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21682", "9218", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21683", "9218", "price", "39");
INSERT INTO `wp_postmeta` VALUES("21684", "9218", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21685", "9218", "option_1", "Including breakfast");
INSERT INTO `wp_postmeta` VALUES("21686", "9218", "option_2", "Room service");
INSERT INTO `wp_postmeta` VALUES("21687", "9218", "option_3", "Number of childrens");
INSERT INTO `wp_postmeta` VALUES("21688", "9218", "option_4", "Lunch/ dinner");
INSERT INTO `wp_postmeta` VALUES("21689", "9218", "option_5", "Parking");
INSERT INTO `wp_postmeta` VALUES("21690", "9218", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21691", "9218", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21692", "9218", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21693", "9218", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21694", "9218", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21695", "9218", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21696", "9218", "button_text", "Sign up");
INSERT INTO `wp_postmeta` VALUES("21697", "9218", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21698", "9218", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21699", "9218", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21700", "9218", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21701", "9218", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21702", "9218", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21703", "9218", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21704", "9218", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21705", "9218", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21706", "9218", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21707", "9218", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21708", "9218", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21709", "9218", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21710", "9218", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21711", "9218", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21712", "9218", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21713", "9218", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21714", "9218", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21715", "9218", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21716", "9218", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21717", "9218", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21718", "9219", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21719", "9219", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21720", "9219", "price", "59");
INSERT INTO `wp_postmeta` VALUES("21721", "9219", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("21722", "9219", "option_1", "Including breakfast");
INSERT INTO `wp_postmeta` VALUES("21723", "9219", "option_2", "Room service");
INSERT INTO `wp_postmeta` VALUES("21724", "9219", "option_3", "Number of childrens");
INSERT INTO `wp_postmeta` VALUES("21725", "9219", "option_4", "Lunch/ dinner");
INSERT INTO `wp_postmeta` VALUES("21726", "9219", "option_5", "Parking");
INSERT INTO `wp_postmeta` VALUES("21727", "9219", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21728", "9219", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21729", "9219", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21730", "9219", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21731", "9219", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21732", "9219", "button_url", "#");
INSERT INTO `wp_postmeta` VALUES("21733", "9219", "button_text", "Sign up");
INSERT INTO `wp_postmeta` VALUES("21734", "9219", "is_feature", "1");
INSERT INTO `wp_postmeta` VALUES("21735", "9219", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21736", "9219", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21737", "9219", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21738", "9219", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21739", "9219", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21740", "9219", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21741", "9219", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21742", "9219", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21743", "9219", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21744", "9219", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21745", "9219", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21746", "9219", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21747", "9219", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21748", "9219", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21749", "9219", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21750", "9219", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21751", "9219", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21752", "9219", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21753", "9219", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21754", "9219", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21755", "14205", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21756", "14205", "_vc_post_settings", "a:1:{s:7:\"vc_grid\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21757", "14205", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("21758", "14205", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("21759", "14205", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("21760", "14205", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("21761", "14205", "price", "29");
INSERT INTO `wp_postmeta` VALUES("21762", "14205", "value", "month");
INSERT INTO `wp_postmeta` VALUES("21763", "14205", "option_1", "INCLUDING BREAKFAST");
INSERT INTO `wp_postmeta` VALUES("21764", "14205", "option_2", "ROOM SERVICE");
INSERT INTO `wp_postmeta` VALUES("21765", "14205", "option_3", "NUMBER OF CHILDRENS");
INSERT INTO `wp_postmeta` VALUES("21766", "14205", "option_4", "LUNCH/ DINNER");
INSERT INTO `wp_postmeta` VALUES("21767", "14205", "option_5", "PARKING");
INSERT INTO `wp_postmeta` VALUES("21768", "14205", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21769", "14205", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21770", "14205", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21771", "14205", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21772", "14205", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21773", "14205", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("21774", "14205", "button_text", "SIGN UP");
INSERT INTO `wp_postmeta` VALUES("21775", "14205", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21776", "14205", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21777", "14205", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21778", "14205", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21779", "14205", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21780", "14205", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21781", "14205", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21782", "14205", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21783", "14205", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21784", "14205", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21785", "14205", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21786", "14205", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21787", "14205", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21788", "14205", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21789", "14205", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21790", "14205", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21791", "14205", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21792", "14205", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21793", "14205", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21794", "14205", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21795", "14205", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21796", "14205", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("21797", "14205", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21798", "14206", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21799", "14206", "_vc_post_settings", "a:1:{s:7:\"vc_grid\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21800", "14206", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("21801", "14206", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("21802", "14206", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("21803", "14206", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("21804", "14206", "price", "39");
INSERT INTO `wp_postmeta` VALUES("21805", "14206", "value", "month");
INSERT INTO `wp_postmeta` VALUES("21806", "14206", "option_1", "INCLUDING BREAKFAST");
INSERT INTO `wp_postmeta` VALUES("21807", "14206", "option_2", "ROOM SERVICE");
INSERT INTO `wp_postmeta` VALUES("21808", "14206", "option_3", "NUMBER OF CHILDRENS");
INSERT INTO `wp_postmeta` VALUES("21809", "14206", "option_4", "LUNCH/ DINNER");
INSERT INTO `wp_postmeta` VALUES("21810", "14206", "option_5", "PARKING");
INSERT INTO `wp_postmeta` VALUES("21811", "14206", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21812", "14206", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21813", "14206", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21814", "14206", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21815", "14206", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21816", "14206", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("21817", "14206", "button_text", "SIGN UP");
INSERT INTO `wp_postmeta` VALUES("21818", "14206", "is_feature", "1");
INSERT INTO `wp_postmeta` VALUES("21819", "14206", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21820", "14206", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21821", "14206", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21822", "14206", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21823", "14206", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21824", "14206", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21825", "14206", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21826", "14206", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21827", "14206", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21828", "14206", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21829", "14206", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21830", "14206", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21831", "14206", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21832", "14206", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21833", "14206", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21834", "14206", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21835", "14206", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21836", "14206", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21837", "14206", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21838", "14206", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21839", "14206", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("21840", "14206", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21841", "14207", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("21842", "14207", "_vc_post_settings", "a:1:{s:7:\"vc_grid\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21843", "14207", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("21844", "14207", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("21845", "14207", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("21846", "14207", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("21847", "14207", "price", "49");
INSERT INTO `wp_postmeta` VALUES("21848", "14207", "value", "month");
INSERT INTO `wp_postmeta` VALUES("21849", "14207", "option_1", "INCLUDING BREAKFAST");
INSERT INTO `wp_postmeta` VALUES("21850", "14207", "option_2", "ROOM SERVICE");
INSERT INTO `wp_postmeta` VALUES("21851", "14207", "option_3", "NUMBER OF CHILDRENS");
INSERT INTO `wp_postmeta` VALUES("21852", "14207", "option_4", "LUNCH/ DINNER");
INSERT INTO `wp_postmeta` VALUES("21853", "14207", "option_5", "PARKING");
INSERT INTO `wp_postmeta` VALUES("21854", "14207", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("21855", "14207", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("21856", "14207", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("21857", "14207", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("21858", "14207", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("21859", "14207", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("21860", "14207", "button_text", "SIGN UP");
INSERT INTO `wp_postmeta` VALUES("21861", "14207", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("21862", "14207", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("21863", "14207", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("21864", "14207", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("21865", "14207", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("21866", "14207", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("21867", "14207", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("21868", "14207", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("21869", "14207", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("21870", "14207", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("21871", "14207", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("21872", "14207", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("21873", "14207", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("21874", "14207", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("21875", "14207", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("21876", "14207", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("21877", "14207", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("21878", "14207", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("21879", "14207", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("21880", "14207", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("21881", "14207", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("21882", "14207", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("21883", "14207", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("21903", "9164", "_edit_lock", "1449842690:1");
INSERT INTO `wp_postmeta` VALUES("21887", "9081", "_wp_attached_file", "2014/12/Monochrome.jpg");
INSERT INTO `wp_postmeta` VALUES("21888", "9081", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:260;s:4:\"file\";s:22:\"2014/12/Monochrome.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Monochrome-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"Monochrome-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"Monochrome-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"Monochrome-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"Monochrome-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("21889", "9084", "_wp_attached_file", "2014/12/p5.jpg");
INSERT INTO `wp_postmeta` VALUES("21890", "9084", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:380;s:6:\"height\";i:570;s:4:\"file\";s:14:\"2014/12/p5.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:14:\"p5-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:14:\"p5-380x272.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:14:\"p5-380x295.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:14:\"p5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:14:\"p5-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:14:\"p5-380x400.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:14:\"p5-380x441.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:12:\"p5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("21893", "9088", "_wp_attached_file", "2014/12/p9.jpg");
INSERT INTO `wp_postmeta` VALUES("21894", "9088", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:380;s:6:\"height\";i:513;s:4:\"file\";s:14:\"2014/12/p9.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"p9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:14:\"p9-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:14:\"p9-380x272.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:14:\"p9-380x295.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:14:\"p9-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:14:\"p9-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:14:\"p9-380x400.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:14:\"p9-380x441.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:12:\"p9-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("21895", "9167", "_wp_attached_file", "2014/12/spa.jpg");
INSERT INTO `wp_postmeta` VALUES("21896", "9167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:620;s:6:\"height\";i:413;s:4:\"file\";s:15:\"2014/12/spa.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"spa-150x150.jpg\";s:5:\"width\";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:\"spa-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:15:\"spa-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:15:\"spa-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:15:\"spa-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:15:\"spa-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:15:\"spa-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:15:\"spa-620x400.jpg\";s:5:\"width\";i:620;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:13:\"spa-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("21899", "9169", "_wp_attached_file", "2014/12/spa-couple.jpg");
INSERT INTO `wp_postmeta` VALUES("21900", "9169", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2100;s:6:\"height\";i:1400;s:4:\"file\";s:22:\"2014/12/spa-couple.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"spa-couple-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"spa-couple-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"spa-couple-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"spa-couple-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"spa-couple-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"spa-couple-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"spa-couple-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"spa-couple-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"spa-couple-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"spa-couple-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"spa-couple-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";d:4;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:176:\"Young couple is having a back massage at the spa centre. \r\r[url=http://www.istockphoto.com/search/lightbox/9786786][img]http://dl.dropbox.com/u/40117171/couples.jpg[/img][/url]\";s:17:\"created_timestamp\";i:1295611150;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:46:\"Beautiful couple enjoying in the back massage.\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("21906", "14227", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"[your-name] <wordpress@192.168.1.110>\";s:4:\"body\";s:174:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("21907", "14227", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:38:\"WP EXO Theme <wordpress@192.168.1.110>\";s:4:\"body\";s:116:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("21908", "14227", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("21909", "14227", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("21910", "14227", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("21911", "14227", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21913", "14241", "_form", "<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n                <div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 404 77\" height=\"100%\" width=\"100%\" class=\"graphic cms-madoka\"><path d=\"m0,0l404,0l0,77l-404,0l0,-77z\"/></svg>[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 404 77\" height=\"100%\" width=\"100%\" class=\"graphic cms-madoka\"><path d=\"m0,0l404,0l0,77l-404,0l0,-77z\"/></svg>[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 404 77\" height=\"100%\" width=\"100%\" class=\"graphic cms-madoka\"><path d=\"m0,0l404,0l0,77l-404,0l0,-77z\"/></svg>[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\n	</div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("21914", "14241", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"[your-name] <wordpress@192.168.1.110>\";s:4:\"body\";s:174:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("21915", "14241", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:38:\"WP EXO Theme <wordpress@192.168.1.110>\";s:4:\"body\";s:116:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("21916", "14241", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("21917", "14241", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("21918", "14241", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("21919", "14241", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21920", "14244", "_form", "<div class=\"row\" style=\"margin-bottom: 0px;\">\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 1200 60\" height=\"100%\" width=\"300%\" class=\"graphic cms-kozakura\"><path d=\"M1200,9c0,0-305.005,0-401.001,0C733,9,675.327,4.969,598,4.969C514.994,4.969,449.336,9,400.333,9C299.666,9,0,9,0,9v43c0,0,299.666,0,400.333,0c49.002,0,114.66,3.484,197.667,3.484c77.327,0,135-3.484,200.999-3.484C894.995,52,1200,52,1200,52V9z\"/></svg>[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 1200 60\" height=\"100%\" width=\"300%\" class=\"graphic cms-kozakura\"><path d=\"M1200,9c0,0-305.005,0-401.001,0C733,9,675.327,4.969,598,4.969C514.994,4.969,449.336,9,400.333,9C299.666,9,0,9,0,9v43c0,0,299.666,0,400.333,0c49.002,0,114.66,3.484,197.667,3.484c77.327,0,135-3.484,200.999-3.484C894.995,52,1200,52,1200,52V9z\"/></svg>[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\n	</div>\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 1200 60\" height=\"100%\" width=\"300%\" class=\"graphic cms-kozakura\"><path d=\"M1200,9c0,0-305.005,0-401.001,0C733,9,675.327,4.969,598,4.969C514.994,4.969,449.336,9,400.333,9C299.666,9,0,9,0,9v43c0,0,299.666,0,400.333,0c49.002,0,114.66,3.484,197.667,3.484c77.327,0,135-3.484,200.999-3.484C894.995,52,1200,52,1200,52V9z\"/></svg>[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\n	</div>\n</div>\n<div class=\"row\">\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center\">\n[submit \"Submit\"]\n</div>\n</div>");
INSERT INTO `wp_postmeta` VALUES("21921", "14244", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"[your-name] <wordpress@192.168.1.110>\";s:4:\"body\";s:174:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("21922", "14244", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:38:\"WP EXO Theme <wordpress@192.168.1.110>\";s:4:\"body\";s:116:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("21923", "14244", "_messages", "a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}");
INSERT INTO `wp_postmeta` VALUES("21924", "14244", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("21925", "14244", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("21926", "14244", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21927", "18", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("21928", "18", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("21929", "18", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("21930", "18", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("21931", "18", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("21932", "18", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21933", "18", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("21934", "18", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21935", "18", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("21936", "18", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("21937", "18", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("21938", "18", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("21939", "18", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("21940", "18", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("21941", "18", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("21942", "18", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("21943", "18", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("21944", "18", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("21945", "18", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21946", "18", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("21947", "18", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("21969", "1644", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("21970", "1644", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("21971", "1644", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("21972", "1644", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("21973", "1644", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21974", "1644", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("21975", "1644", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21976", "1644", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("21977", "1644", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("21978", "1644", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("21979", "1644", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("21980", "1644", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("21981", "1644", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("21982", "1644", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("21983", "1644", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("21984", "1644", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("21985", "1644", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("21986", "1644", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("21987", "1644", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("21988", "1644", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("21989", "1644", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23086", "14279", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("23087", "14279", "_edit_lock", "1451399899:1");
INSERT INTO `wp_postmeta` VALUES("23088", "14279", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("23089", "14279", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("23090", "14279", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("23091", "14279", "_wpb_shortcodes_custom_css", ".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1421405826923{padding-bottom: 60px !important;}.vc_custom_1451399240817{padding-bottom: 40px !important;}");
INSERT INTO `wp_postmeta` VALUES("23092", "14279", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("23093", "14279", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("23094", "14279", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("23095", "14279", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("23096", "14279", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("23097", "14279", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("23098", "14279", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("23099", "14279", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("23100", "14279", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23101", "14279", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("23102", "14279", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("23103", "14279", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23104", "14279", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23105", "14279", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23106", "14279", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23107", "14279", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23108", "14279", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23109", "14279", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("23110", "14279", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("23111", "14279", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("23112", "14279", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("23113", "14279", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("23114", "14279", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("23115", "14279", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("23116", "14279", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("23117", "14279", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("23118", "14279", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("23119", "14279", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("23120", "14279", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("23121", "14279", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("23122", "14279", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23123", "14279", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23124", "14279", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23125", "14279", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23126", "14279", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23127", "14279", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23128", "14279", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("23129", "14279", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("23130", "14279", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("23131", "14279", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("23132", "14279", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("23133", "14279", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("23134", "14279", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("23135", "14279", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23136", "14279", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("23137", "14279", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23138", "14279", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23139", "14279", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("23140", "14279", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23141", "14279", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("23142", "14279", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23143", "14279", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23144", "14279", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23145", "14279", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23146", "14279", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("23147", "14279", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23148", "14279", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("23149", "14279", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("23150", "14279", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("23151", "14279", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("23152", "14279", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("23153", "14279", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("23154", "14279", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("23155", "14279", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("23156", "14279", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("23157", "14279", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("23158", "14279", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("23159", "14279", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23160", "14279", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23161", "14279", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23162", "14279", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23163", "14279", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("23164", "14279", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("23165", "14279", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("23166", "14279", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("23167", "14279", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("23168", "14279", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("23169", "14279", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("23170", "14279", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("23171", "14279", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("23172", "14279", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("23173", "14279", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("23174", "14279", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("23175", "14279", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23176", "14279", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("23177", "14279", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23178", "14279", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23179", "14279", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23180", "14279", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23181", "14279", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23182", "14279", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("23183", "14279", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("23184", "14279", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("23185", "14279", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("23186", "14279", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23187", "14279", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("23188", "14279", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("23189", "14279", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23190", "14279", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("23191", "14279", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("23192", "14279", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("23193", "14279", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("23194", "14279", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("23195", "14279", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("23196", "14279", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("23197", "14279", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("23198", "14279", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("23199", "14279", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("23200", "14279", "price", "");
INSERT INTO `wp_postmeta` VALUES("23201", "14279", "value", "");
INSERT INTO `wp_postmeta` VALUES("23202", "14279", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("23203", "14279", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("23204", "14279", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("23205", "14279", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("23206", "14279", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("23207", "14279", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("23208", "14279", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("23209", "14279", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("23210", "14279", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("23211", "14279", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("23212", "14279", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("23213", "14279", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("23214", "14279", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("23215", "14279", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("23216", "14279", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("23217", "14279", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("23218", "14279", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("23219", "14279", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("23220", "14279", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("23221", "14279", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("23222", "14279", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("23223", "14279", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("23224", "14279", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("23225", "14279", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("23226", "14279", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("23227", "14279", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("23228", "14279", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("23229", "14279", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("23230", "14279", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("23231", "14279", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("23232", "14279", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("23233", "14279", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("23234", "14279", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("23235", "14279", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("23236", "14279", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("23237", "14279", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("23238", "14279", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("23239", "14279", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("23240", "14279", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("23241", "14279", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("23242", "14279", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("23243", "14279", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("23244", "14279", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("23245", "14279", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23246", "14279", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23247", "14279", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23248", "14279", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23249", "14279", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23250", "14279", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("23251", "14279", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("23252", "14279", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("23253", "14279", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("23254", "14279", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("23255", "14279", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("23256", "14279", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("23257", "14279", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("23258", "14279", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("23259", "14279", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("23260", "14279", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("23261", "14279", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("23262", "14279", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("23263", "14279", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50899", "17522", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:19:\"2015/12/favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("50897", "1482", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("50898", "17522", "_wp_attached_file", "2015/12/favicon.png");
INSERT INTO `wp_postmeta` VALUES("50887", "17517", "_menu_item_el_class", "custom-menu-widget");
INSERT INTO `wp_postmeta` VALUES("50886", "17517", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("50885", "17517", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50884", "17517", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50883", "17517", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("23557", "14288", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("23558", "14288", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("23559", "14288", "_menu_item_object_id", "14279");
INSERT INTO `wp_postmeta` VALUES("23560", "14288", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("23561", "14288", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("23562", "14288", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("23563", "14288", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("23564", "14288", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("23726", "14288", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("23566", "14288", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("23567", "14288", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("23568", "14288", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("23569", "14288", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("23570", "14288", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("23571", "14288", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("23572", "14288", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23573", "14288", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23574", "14288", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("23575", "14288", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("23576", "14288", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23577", "14288", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23578", "14288", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("23579", "14288", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("24955", "14328", "_wpb_shortcodes_custom_css", ".vc_custom_1421865210078{padding-top: 35px !important;padding-bottom: 100px !important;}.vc_custom_1421865628413{padding-top: 95px !important;padding-bottom: 100px !important;}.vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}.vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}.vc_custom_1421898033867{padding-bottom: 100px !important;}");
INSERT INTO `wp_postmeta` VALUES("23730", "14295", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("23731", "14295", "_wpb_shortcodes_custom_css", ".vc_custom_1421922251348{border-bottom-width: 1px !important;padding-top: 10px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}.vc_custom_1419327543104{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1434075070531{padding-top: 50px !important;padding-bottom: 50px !important;}.vc_custom_1434075090676{padding-top: 30px !important;padding-bottom: 30px !important;}.vc_custom_1434075109754{padding-top: 30px !important;padding-bottom: 30px !important;}.vc_custom_1421923254148{margin-bottom: 60px !important;}.vc_custom_1434075142896{padding-top: 10px !important;padding-bottom: 30px !important;}.vc_custom_1434075160188{padding-top: 30px !important;padding-bottom: 30px !important;}.vc_custom_1434075126307{padding-bottom: 50px !important;}");
INSERT INTO `wp_postmeta` VALUES("23732", "14295", "_edit_lock", "1435304120:1");
INSERT INTO `wp_postmeta` VALUES("23733", "14295", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("23734", "14295", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("23735", "14295", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("23736", "14295", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("23737", "14295", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("23738", "14295", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("23739", "14295", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("23740", "14295", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("23741", "14295", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("23742", "14295", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("23743", "14295", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("23744", "14295", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23745", "14295", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("23746", "14295", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("23747", "14295", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23748", "14295", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23749", "14295", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23750", "14295", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23751", "14295", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23752", "14295", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23753", "14295", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("23754", "14295", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("23755", "14295", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("23756", "14295", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("23757", "14295", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("23758", "14295", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("23759", "14295", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("23760", "14295", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("23761", "14295", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("23762", "14295", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("23763", "14295", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("23764", "14295", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("23765", "14295", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("23766", "14295", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23767", "14295", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23768", "14295", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23769", "14295", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23770", "14295", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23771", "14295", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23772", "14295", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("23773", "14295", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("23774", "14295", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("23775", "14295", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("23776", "14295", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("23777", "14295", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("23778", "14295", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("23779", "14295", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23780", "14295", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("23781", "14295", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23782", "14295", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23783", "14295", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("23784", "14295", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23785", "14295", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("23786", "14295", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23787", "14295", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23788", "14295", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23789", "14295", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23790", "14295", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("23791", "14295", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("23792", "14295", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("23793", "14295", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("23794", "14295", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("23795", "14295", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("23796", "14295", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("23797", "14295", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("23798", "14295", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("23799", "14295", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("23800", "14295", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("23801", "14295", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("23802", "14295", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("23803", "14295", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23804", "14295", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23805", "14295", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23806", "14295", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23807", "14295", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("23808", "14295", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("23809", "14295", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("23810", "14295", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("23811", "14295", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("23812", "14295", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("23813", "14295", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("23814", "14295", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("23815", "14295", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("23816", "14295", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("23817", "14295", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("23818", "14295", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("23819", "14295", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23820", "14295", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("23821", "14295", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("23822", "14295", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("23823", "14295", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("23824", "14295", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("23825", "14295", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("23826", "14295", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("23827", "14295", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("23828", "14295", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("23829", "14295", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("23830", "14295", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("23831", "14295", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("23832", "14295", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("23833", "14295", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("23834", "14295", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("23835", "14295", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("23836", "14295", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("23837", "14295", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("23838", "14295", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("23839", "14295", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("23840", "14295", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("23841", "14295", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("23842", "14295", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("23843", "14295", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("23844", "14295", "price", "");
INSERT INTO `wp_postmeta` VALUES("23845", "14295", "value", "");
INSERT INTO `wp_postmeta` VALUES("23846", "14295", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("23847", "14295", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("23848", "14295", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("23849", "14295", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("23850", "14295", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("23851", "14295", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("23852", "14295", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("23853", "14295", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("23854", "14295", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("23855", "14295", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("23856", "14295", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("23857", "14295", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("23858", "14295", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("23859", "14295", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("23860", "14295", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("23861", "14295", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("23862", "14295", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("23863", "14295", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("23864", "14295", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("23865", "14295", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("23866", "14295", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("23867", "14295", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("23868", "14295", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("23869", "14295", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("23870", "14295", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("23871", "14295", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("23872", "14295", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("23873", "14295", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("23874", "14295", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("23875", "14295", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("23876", "14295", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("23877", "14295", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("23878", "14295", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("23879", "14295", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("23880", "14295", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("23881", "14295", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("23882", "14295", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("23883", "14295", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("23884", "14295", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("23885", "14295", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("23886", "14295", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("23887", "14295", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("23888", "14295", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("23889", "14295", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23890", "14295", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23891", "14295", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23892", "14295", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23893", "14295", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("23894", "14295", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("23895", "14295", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("23896", "14295", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("23897", "14295", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("23898", "14295", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("23899", "14295", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("23900", "14295", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("23901", "14295", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("23902", "14295", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("23903", "14295", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("23904", "14295", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("23905", "14295", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("23906", "14295", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("23907", "14295", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("24655", "14321", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("24656", "14321", "_edit_lock", "1434549050:1");
INSERT INTO `wp_postmeta` VALUES("24657", "14321", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("24658", "14321", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("24659", "14321", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("24660", "14321", "_wpb_shortcodes_custom_css", ".vc_custom_1405680978553{padding-bottom: 80px !important;}.vc_custom_1421940315947{padding-top: 80px !important;padding-bottom: 120px !important;background-color: #f5f5f5 !important;}");
INSERT INTO `wp_postmeta` VALUES("24661", "14321", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("24662", "14321", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("24663", "14321", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("24664", "14321", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("24665", "14321", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("24666", "14321", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("24667", "14321", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("24668", "14321", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("24669", "14321", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24670", "14321", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("24671", "14321", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("24672", "14321", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24673", "14321", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("24674", "14321", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("24675", "14321", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("24676", "14321", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("24677", "14321", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("24678", "14321", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("24679", "14321", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("24680", "14321", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("24681", "14321", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("24682", "14321", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("24683", "14321", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("24684", "14321", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("24685", "14321", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("24686", "14321", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("24687", "14321", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("24688", "14321", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("24689", "14321", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("24690", "14321", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("24691", "14321", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24692", "14321", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("24693", "14321", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("24694", "14321", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("24695", "14321", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("24696", "14321", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("24697", "14321", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("24698", "14321", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("24699", "14321", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("24700", "14321", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("24701", "14321", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("24702", "14321", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("24703", "14321", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("24704", "14321", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("24705", "14321", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("24706", "14321", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24707", "14321", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("24708", "14321", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("24709", "14321", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("24710", "14321", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("24711", "14321", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24712", "14321", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24713", "14321", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24714", "14321", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24715", "14321", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("24716", "14321", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24717", "14321", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("24718", "14321", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("24719", "14321", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("24720", "14321", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("24721", "14321", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("24722", "14321", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("24723", "14321", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("24724", "14321", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("24725", "14321", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("24726", "14321", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("24727", "14321", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("24728", "14321", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("24729", "14321", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("24730", "14321", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("24731", "14321", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("24732", "14321", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("24733", "14321", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("24734", "14321", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("24735", "14321", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("24736", "14321", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("24737", "14321", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("24738", "14321", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("24739", "14321", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("24740", "14321", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("24741", "14321", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("24742", "14321", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("24743", "14321", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("24744", "14321", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24745", "14321", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("24746", "14321", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("24747", "14321", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("24748", "14321", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("24749", "14321", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("24750", "14321", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("24751", "14321", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("24752", "14321", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("24753", "14321", "cs_bottom_top_image_arrow_color", "#f5f5f5");
INSERT INTO `wp_postmeta` VALUES("24754", "14321", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("24755", "14321", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24756", "14321", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("24757", "14321", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("24758", "14321", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("24759", "14321", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("24760", "14321", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("24761", "14321", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("24762", "14321", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("24763", "14321", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("24764", "14321", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("24765", "14321", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("24766", "14321", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("24767", "14321", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("24768", "14321", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("24769", "14321", "price", "");
INSERT INTO `wp_postmeta` VALUES("24770", "14321", "value", "");
INSERT INTO `wp_postmeta` VALUES("24771", "14321", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("24772", "14321", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("24773", "14321", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("24774", "14321", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("24775", "14321", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("24776", "14321", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("24777", "14321", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("24778", "14321", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("24779", "14321", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("24780", "14321", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("24781", "14321", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("24782", "14321", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("24783", "14321", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("24784", "14321", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("24785", "14321", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("24786", "14321", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("24787", "14321", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("24788", "14321", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("24789", "14321", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("24790", "14321", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("24791", "14321", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("24792", "14321", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("24793", "14321", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("24794", "14321", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("24795", "14321", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("24796", "14321", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("24797", "14321", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("24798", "14321", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("24799", "14321", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("24800", "14321", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("24801", "14321", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("24802", "14321", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("24803", "14321", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("24804", "14321", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("24805", "14321", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("24806", "14321", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("24807", "14321", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("24808", "14321", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("24809", "14321", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("24810", "14321", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("24811", "14321", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("24812", "14321", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("24813", "14321", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("24814", "14321", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("24815", "14321", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("24816", "14321", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("24817", "14321", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("24818", "14321", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("24819", "14321", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("24820", "14321", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("24821", "14321", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("24822", "14321", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("24823", "14321", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("24824", "14321", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("24825", "14321", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("24826", "14321", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("24827", "14321", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("24828", "14321", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("24829", "14321", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("24830", "14321", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("24831", "14321", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("24832", "14321", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("24954", "14328", "_edit_lock", "1435762862:1");
INSERT INTO `wp_postmeta` VALUES("24953", "14328", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("24956", "14328", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("24957", "14328", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("24958", "14328", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("24959", "14328", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("24960", "14328", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("24961", "14328", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("24962", "14328", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("24963", "14328", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("24964", "14328", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("24965", "14328", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("24966", "14328", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("24967", "14328", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("24968", "14328", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("24969", "14328", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("24970", "14328", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24971", "14328", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("24972", "14328", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("24973", "14328", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("24974", "14328", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("24975", "14328", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("24976", "14328", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("24977", "14328", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("24978", "14328", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("24979", "14328", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("24980", "14328", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("24981", "14328", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("24982", "14328", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("24983", "14328", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("24984", "14328", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("24985", "14328", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("24986", "14328", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("24987", "14328", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("24988", "14328", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("24989", "14328", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("24990", "14328", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("24991", "14328", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("24992", "14328", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("24993", "14328", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("24994", "14328", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("24995", "14328", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("24996", "14328", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("24997", "14328", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("24998", "14328", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("24999", "14328", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("25000", "14328", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("25001", "14328", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("25002", "14328", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25003", "14328", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("25004", "14328", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25005", "14328", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25006", "14328", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("25007", "14328", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25008", "14328", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("25009", "14328", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25010", "14328", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25011", "14328", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25012", "14328", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25013", "14328", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("25014", "14328", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25015", "14328", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("25016", "14328", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("25017", "14328", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("25018", "14328", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("25019", "14328", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("25020", "14328", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("25021", "14328", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("25022", "14328", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("25023", "14328", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("25024", "14328", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("25025", "14328", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("25026", "14328", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("25027", "14328", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("25028", "14328", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("25029", "14328", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("25030", "14328", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("25031", "14328", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("25032", "14328", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("25033", "14328", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("25034", "14328", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("25035", "14328", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("25036", "14328", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("25037", "14328", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("25038", "14328", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("25039", "14328", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("25040", "14328", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("25041", "14328", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("25042", "14328", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25043", "14328", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("25044", "14328", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("25045", "14328", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("25046", "14328", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("25047", "14328", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("25048", "14328", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("25049", "14328", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("25050", "14328", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("25051", "14328", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("25052", "14328", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("25053", "14328", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25054", "14328", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("25055", "14328", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("25056", "14328", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25057", "14328", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("25058", "14328", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("25059", "14328", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("25060", "14328", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("25061", "14328", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("25062", "14328", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("25063", "14328", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("25064", "14328", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("25065", "14328", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("25066", "14328", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("25067", "14328", "price", "");
INSERT INTO `wp_postmeta` VALUES("25068", "14328", "value", "");
INSERT INTO `wp_postmeta` VALUES("25069", "14328", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("25070", "14328", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("25071", "14328", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("25072", "14328", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("25073", "14328", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("25074", "14328", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("25075", "14328", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("25076", "14328", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("25077", "14328", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("25078", "14328", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("25079", "14328", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("25080", "14328", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("25081", "14328", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("25082", "14328", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("25083", "14328", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("25084", "14328", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("25085", "14328", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("25086", "14328", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("25087", "14328", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("25088", "14328", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("25089", "14328", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("25090", "14328", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("25091", "14328", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("25092", "14328", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("25093", "14328", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("25094", "14328", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("25095", "14328", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("25096", "14328", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("25097", "14328", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("25098", "14328", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("25099", "14328", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("25100", "14328", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("25101", "14328", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("25102", "14328", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("25103", "14328", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("25104", "14328", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("25105", "14328", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("25106", "14328", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("25107", "14328", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("25108", "14328", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("25109", "14328", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("25110", "14328", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("25111", "14328", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("25112", "14328", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25113", "14328", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25114", "14328", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25115", "14328", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25116", "14328", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25117", "14328", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("25118", "14328", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("25119", "14328", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("25120", "14328", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("25121", "14328", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("25122", "14328", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("25123", "14328", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("25124", "14328", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("25125", "14328", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("25126", "14328", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("25127", "14328", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("25128", "14328", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("25129", "14328", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("25130", "14328", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("25539", "14341", "_wp_attached_file", "2015/06/man-371x248_c.jpg");
INSERT INTO `wp_postmeta` VALUES("25540", "14341", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:371;s:6:\"height\";i:248;s:4:\"file\";s:25:\"2015/06/man-371x248_c.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"man-371x248_c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:25:\"man-371x248_c-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:25:\"man-371x248_c-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:25:\"man-371x248_c-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:23:\"man-371x248_c-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"371x248_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("25541", "14342", "_wp_attached_file", "2015/06/manwithlaptop-571x381_c.jpg");
INSERT INTO `wp_postmeta` VALUES("25542", "14342", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:571;s:6:\"height\";i:381;s:4:\"file\";s:35:\"2015/06/manwithlaptop-571x381_c.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"manwithlaptop-571x381_c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:35:\"manwithlaptop-571x381_c-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:35:\"manwithlaptop-571x381_c-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:35:\"manwithlaptop-571x381_c-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:35:\"manwithlaptop-571x381_c-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:35:\"manwithlaptop-571x381_c-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:33:\"manwithlaptop-571x381_c-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"571x381_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("25543", "14343", "_wp_attached_file", "2015/06/White-Room-571x381_c.jpg");
INSERT INTO `wp_postmeta` VALUES("25544", "14343", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:571;s:6:\"height\";i:381;s:4:\"file\";s:32:\"2015/06/White-Room-571x381_c.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"White-Room-571x381_c-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:32:\"White-Room-571x381_c-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:32:\"White-Room-571x381_c-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:32:\"White-Room-571x381_c-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:32:\"White-Room-571x381_c-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:32:\"White-Room-571x381_c-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:30:\"White-Room-571x381_c-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"571x381_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("25547", "14351", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("25548", "14351", "_edit_lock", "1437557942:1");
INSERT INTO `wp_postmeta` VALUES("25553", "14351", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("25554", "14351", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("25555", "14351", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("25550", "14351", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("25551", "14351", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("25552", "14351", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("25556", "14351", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("25557", "14351", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("25558", "14351", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("25559", "14351", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("25560", "14351", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("25561", "14351", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25562", "14351", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("25563", "14351", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("25564", "14351", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25565", "14351", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("25566", "14351", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("25567", "14351", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("25568", "14351", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("25569", "14351", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("25570", "14351", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("25571", "14351", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("25572", "14351", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("25573", "14351", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("25574", "14351", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("25575", "14351", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("25576", "14351", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("25577", "14351", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("25578", "14351", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("25579", "14351", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("25580", "14351", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("25581", "14351", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("25582", "14351", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("25583", "14351", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25584", "14351", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("25585", "14351", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("25586", "14351", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("25587", "14351", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("25588", "14351", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("25589", "14351", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("25590", "14351", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("25591", "14351", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("25592", "14351", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("25593", "14351", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("25594", "14351", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("25595", "14351", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("25596", "14351", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25597", "14351", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("25598", "14351", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25599", "14351", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25600", "14351", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("25601", "14351", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25602", "14351", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("25603", "14351", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25604", "14351", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25605", "14351", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25606", "14351", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25607", "14351", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("25608", "14351", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("25609", "14351", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("25610", "14351", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("25611", "14351", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("25612", "14351", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("25613", "14351", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("25614", "14351", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("25615", "14351", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("25616", "14351", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("25617", "14351", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("25618", "14351", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("25619", "14351", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("25620", "14351", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("25621", "14351", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("25622", "14351", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("25623", "14351", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("25624", "14351", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("25625", "14351", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("25626", "14351", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("25627", "14351", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("25628", "14351", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("25629", "14351", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("25630", "14351", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("25631", "14351", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("25632", "14351", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("25633", "14351", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("25634", "14351", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("25635", "14351", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("25636", "14351", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25637", "14351", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("25638", "14351", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("25639", "14351", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("25640", "14351", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("25641", "14351", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("25642", "14351", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("25643", "14351", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("25644", "14351", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("25645", "14351", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("25646", "14351", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("25647", "14351", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("25648", "14351", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("25649", "14351", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("25650", "14351", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("25651", "14351", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("25652", "14351", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("25653", "14351", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("25654", "14351", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("25655", "14351", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("25656", "14351", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("25657", "14351", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("25658", "14351", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("25659", "14351", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("25660", "14351", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("25661", "14351", "price", "");
INSERT INTO `wp_postmeta` VALUES("25662", "14351", "value", "");
INSERT INTO `wp_postmeta` VALUES("25663", "14351", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("25664", "14351", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("25665", "14351", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("25666", "14351", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("25667", "14351", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("25668", "14351", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("25669", "14351", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("25670", "14351", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("25671", "14351", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("25672", "14351", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("25673", "14351", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("25674", "14351", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("25675", "14351", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("25676", "14351", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("25677", "14351", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("25678", "14351", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("25679", "14351", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("25680", "14351", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("25681", "14351", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("25682", "14351", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("25683", "14351", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("25684", "14351", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("25685", "14351", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("25686", "14351", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("25687", "14351", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("25688", "14351", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("25689", "14351", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("25690", "14351", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("25691", "14351", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("25692", "14351", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("25693", "14351", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("25694", "14351", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("25695", "14351", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("25696", "14351", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("25697", "14351", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("25698", "14351", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("25699", "14351", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("25700", "14351", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("25701", "14351", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("25702", "14351", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("25703", "14351", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("25704", "14351", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("25705", "14351", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("25706", "14351", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25707", "14351", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25708", "14351", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25709", "14351", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25710", "14351", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("25711", "14351", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("25712", "14351", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("25713", "14351", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("25714", "14351", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("25715", "14351", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("25716", "14351", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("25717", "14351", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("25718", "14351", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("25719", "14351", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("25720", "14351", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("25721", "14351", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("25722", "14351", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("25723", "14351", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("25724", "14351", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("32129", "3051", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("32128", "3051", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("32127", "3051", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("49273", "17472", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49272", "17472", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49271", "17472", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49270", "17472", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49269", "17472", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49267", "17472", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("49268", "17472", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49266", "17472", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("49265", "17472", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("49264", "17472", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("49263", "17472", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49262", "17472", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("49261", "17472", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49260", "17472", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("49259", "17472", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("49256", "17472", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("49255", "17472", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("49254", "17472", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("26593", "14385", "_wp_attached_file", "2015/06/manredtie.jpg");
INSERT INTO `wp_postmeta` VALUES("26594", "14385", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:750;s:4:\"file\";s:21:\"2015/06/manredtie.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"manredtie-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"manredtie-600x321.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"manredtie-1170x627.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"manredtie-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"manredtie-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"manredtie-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"manredtie-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"manredtie-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"manredtie-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"manredtie-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"manredtie-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("26595", "3201", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("26596", "3201", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("26597", "3201", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("26598", "3201", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("26599", "3201", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("26600", "3201", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("26601", "3201", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("26602", "3201", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("26603", "3201", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("26604", "3201", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("26605", "3201", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("27246", "14485", "_wp_attached_file", "2015/06/corp-ipadperspective.png");
INSERT INTO `wp_postmeta` VALUES("48130", "17274", "_edit_lock", "1475251840:1");
INSERT INTO `wp_postmeta` VALUES("40674", "16707", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:21:\"2015/02/aboutpage.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"aboutpage-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"aboutpage-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"aboutpage-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"aboutpage-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"aboutpage-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"aboutpage-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"aboutpage-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"aboutpage-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"aboutpage-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"aboutpage-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"aboutpage-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("40673", "16707", "_wp_attached_file", "2015/02/aboutpage.jpg");
INSERT INTO `wp_postmeta` VALUES("40678", "16720", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"[your-name] <wordpress@192.168.1.110>\";s:4:\"body\";s:174:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:15:\"admin@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("26887", "14351", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("26888", "14351", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("26889", "14351", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("26890", "14351", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("26891", "14351", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("26892", "14351", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("26893", "14351", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("26894", "14351", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("26895", "14351", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("26896", "14351", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("26897", "14351", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("26909", "14469", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("26910", "14469", "_edit_lock", "1434442857:1");
INSERT INTO `wp_postmeta` VALUES("26914", "14469", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("26915", "14469", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("26916", "14469", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("26917", "14469", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("26918", "14469", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("26919", "14469", "cs_portfolio_about_project", "It\'s all about the written word");
INSERT INTO `wp_postmeta` VALUES("26920", "14469", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("26921", "14469", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("26922", "14469", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("26923", "14469", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("26924", "14469", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("26925", "14469", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("26926", "14469", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("26927", "14469", "cs_portfolio_category", "61");
INSERT INTO `wp_postmeta` VALUES("26928", "14469", "cs_portfolio_gallery", "");
INSERT INTO `wp_postmeta` VALUES("26929", "14469", "price", "");
INSERT INTO `wp_postmeta` VALUES("26930", "14469", "value", "");
INSERT INTO `wp_postmeta` VALUES("26931", "14469", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("26932", "14469", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("26933", "14469", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("26934", "14469", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("26935", "14469", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("26936", "14469", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("26937", "14469", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("26938", "14469", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("26939", "14469", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("26940", "14469", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("26941", "14469", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("26942", "14469", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("26943", "14469", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("26944", "14469", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("26945", "14469", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("26946", "14469", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("26947", "14469", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("26948", "14469", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("26949", "14469", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("26950", "14469", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("26951", "14469", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("26952", "14469", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("26953", "14469", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("26954", "14469", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("26955", "14469", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("26956", "14469", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("26957", "14469", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("26958", "14469", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("26959", "14469", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("26960", "14469", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("26961", "14469", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("26962", "14469", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("26963", "14469", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("26964", "14469", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("26965", "14469", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("26966", "14469", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("26967", "14469", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("26968", "14469", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("26969", "14469", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("26970", "14469", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("26971", "14469", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("26972", "14469", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("26973", "14469", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("26974", "14469", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("26975", "14469", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("26976", "14469", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("26977", "14469", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("26978", "14469", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("26979", "14469", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("26980", "14469", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("26981", "14469", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("26982", "14469", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("26983", "14469", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("26984", "14469", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("26985", "14469", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("26986", "14469", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("26987", "14469", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("26988", "14469", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("26989", "14469", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("26990", "14469", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("26991", "14469", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("26992", "14469", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("26993", "14471", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("26994", "14471", "_edit_lock", "1434612045:1");
INSERT INTO `wp_postmeta` VALUES("26998", "14471", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("26999", "14471", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("27000", "14471", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("27001", "14471", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("27002", "14471", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("27003", "14471", "cs_portfolio_about_project", "It\'s all about the tag.");
INSERT INTO `wp_postmeta` VALUES("27004", "14471", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("27005", "14471", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("27006", "14471", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("27007", "14471", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("27008", "14471", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("27009", "14471", "cs_testimonial_images_width", "100");
INSERT INTO `wp_postmeta` VALUES("27010", "14471", "cs_testimonial_images_heihgt", "100");
INSERT INTO `wp_postmeta` VALUES("27011", "14471", "cs_portfolio_category", "61");
INSERT INTO `wp_postmeta` VALUES("27012", "14471", "cs_portfolio_gallery", "");
INSERT INTO `wp_postmeta` VALUES("27013", "14471", "price", "");
INSERT INTO `wp_postmeta` VALUES("27014", "14471", "value", "");
INSERT INTO `wp_postmeta` VALUES("27015", "14471", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("27016", "14471", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("27017", "14471", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("27018", "14471", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("27019", "14471", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("27020", "14471", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("27021", "14471", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("27022", "14471", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("27023", "14471", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("27024", "14471", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("27025", "14471", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("27026", "14471", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("27027", "14471", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("27028", "14471", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("27029", "14471", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("27030", "14471", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("27031", "14471", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("27032", "14471", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("27033", "14471", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("27034", "14471", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("27035", "14471", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("27036", "14471", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("27037", "14471", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("27038", "14471", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27039", "14471", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("27040", "14471", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("27041", "14471", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("27042", "14471", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27043", "14471", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("27044", "14471", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("27045", "14471", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("27046", "14471", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("27047", "14471", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("27048", "14471", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("27049", "14471", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("27050", "14471", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("27051", "14471", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("27052", "14471", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27053", "14471", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27054", "14471", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("27055", "14471", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("27056", "14471", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("27057", "14471", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("27058", "14471", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27059", "14471", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27060", "14471", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27061", "14471", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27062", "14471", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27063", "14471", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("27064", "14471", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("27065", "14471", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("27066", "14471", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("27067", "14471", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("27068", "14471", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("27069", "14471", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("27070", "14471", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("27071", "14471", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("27072", "14471", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("27073", "14471", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("27074", "14471", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("27075", "14471", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("27076", "14471", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("27077", "14474", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("27078", "14474", "_edit_lock", "1434442855:1");
INSERT INTO `wp_postmeta` VALUES("27082", "14474", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("27083", "14474", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("27084", "14474", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("27085", "14474", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("27086", "14474", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("27087", "14474", "cs_portfolio_about_project", "It\'s all about the branding.");
INSERT INTO `wp_postmeta` VALUES("27088", "14474", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("27089", "14474", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("27090", "14474", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("27091", "14474", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("27092", "14474", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("27093", "14474", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("27094", "14474", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("27095", "14474", "cs_portfolio_category", "61");
INSERT INTO `wp_postmeta` VALUES("27096", "14474", "cs_portfolio_gallery", "");
INSERT INTO `wp_postmeta` VALUES("27097", "14474", "price", "");
INSERT INTO `wp_postmeta` VALUES("27098", "14474", "value", "");
INSERT INTO `wp_postmeta` VALUES("27099", "14474", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("27100", "14474", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("27101", "14474", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("27102", "14474", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("27103", "14474", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("27104", "14474", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("27105", "14474", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("27106", "14474", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("27107", "14474", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("27108", "14474", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("27109", "14474", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("27110", "14474", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("27111", "14474", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("27112", "14474", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("27113", "14474", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("27114", "14474", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("27115", "14474", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("27116", "14474", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("27117", "14474", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("27118", "14474", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("27119", "14474", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("27120", "14474", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("27121", "14474", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("27122", "14474", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27123", "14474", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("27124", "14474", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("27125", "14474", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("27126", "14474", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27127", "14474", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("27128", "14474", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("27129", "14474", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("27130", "14474", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("27131", "14474", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("27132", "14474", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("27133", "14474", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("27134", "14474", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("27135", "14474", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("27136", "14474", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27137", "14474", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27138", "14474", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("27139", "14474", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("27140", "14474", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("27141", "14474", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("27142", "14474", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27143", "14474", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27144", "14474", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27145", "14474", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27146", "14474", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27147", "14474", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("27148", "14474", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("27149", "14474", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("27150", "14474", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("27151", "14474", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("27152", "14474", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("27153", "14474", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("27154", "14474", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("27155", "14474", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("27156", "14474", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("27157", "14474", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("27158", "14474", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("27159", "14474", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("27160", "14474", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("27161", "14476", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("27162", "14476", "_edit_lock", "1434442854:1");
INSERT INTO `wp_postmeta` VALUES("27166", "14476", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("27167", "14476", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("27168", "14476", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("27169", "14476", "cs_portfolio_link", "");
INSERT INTO `wp_postmeta` VALUES("27170", "14476", "cs_portfolio_text_intro", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.");
INSERT INTO `wp_postmeta` VALUES("27171", "14476", "cs_portfolio_about_project", "It\'s all about the branding.");
INSERT INTO `wp_postmeta` VALUES("27172", "14476", "cs_testimonial_category", "5");
INSERT INTO `wp_postmeta` VALUES("27173", "14476", "cs_testimonial_title_color", "");
INSERT INTO `wp_postmeta` VALUES("27174", "14476", "cs_testimonial_title_font_size", "");
INSERT INTO `wp_postmeta` VALUES("27175", "14476", "cs_testimonial_description_color", "");
INSERT INTO `wp_postmeta` VALUES("27176", "14476", "cs_testimonial_description_font_size", "");
INSERT INTO `wp_postmeta` VALUES("27177", "14476", "cs_testimonial_images_width", "");
INSERT INTO `wp_postmeta` VALUES("27178", "14476", "cs_testimonial_images_heihgt", "");
INSERT INTO `wp_postmeta` VALUES("27179", "14476", "cs_portfolio_category", "61");
INSERT INTO `wp_postmeta` VALUES("27180", "14476", "cs_portfolio_gallery", "");
INSERT INTO `wp_postmeta` VALUES("27181", "14476", "price", "");
INSERT INTO `wp_postmeta` VALUES("27182", "14476", "value", "");
INSERT INTO `wp_postmeta` VALUES("27183", "14476", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("27184", "14476", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("27185", "14476", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("27186", "14476", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("27187", "14476", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("27188", "14476", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("27189", "14476", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("27190", "14476", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("27191", "14476", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("27192", "14476", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("27193", "14476", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("27194", "14476", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("27195", "14476", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("27196", "14476", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("27197", "14476", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("27198", "14476", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("27199", "14476", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("27200", "14476", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("27201", "14476", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("27202", "14476", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("27203", "14476", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("27204", "14476", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("27205", "14476", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("27206", "14476", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27207", "14476", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("27208", "14476", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("27209", "14476", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("27210", "14476", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27211", "14476", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("27212", "14476", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("27213", "14476", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("27214", "14476", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("27215", "14476", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("27216", "14476", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("27217", "14476", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("27218", "14476", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("27219", "14476", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("27220", "14476", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27221", "14476", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27222", "14476", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("27223", "14476", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("27224", "14476", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("27225", "14476", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("27226", "14476", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27227", "14476", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27228", "14476", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27229", "14476", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27230", "14476", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27231", "14476", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("27232", "14476", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("27233", "14476", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("27234", "14476", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("27235", "14476", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("27236", "14476", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("27237", "14476", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("27238", "14476", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("27239", "14476", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("27240", "14476", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("27241", "14476", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("27242", "14476", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("27243", "14476", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("27244", "14476", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("27245", "14471", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("27247", "14485", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:826;s:6:\"height\";i:384;s:4:\"file\";s:32:\"2015/06/corp-ipadperspective.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-600x279.png\";s:5:\"width\";i:600;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:32:\"corp-ipadperspective-700x384.png\";s:5:\"width\";i:700;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:30:\"corp-ipadperspective-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("27248", "14498", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("27249", "14498", "_edit_lock", "1436860753:1");
INSERT INTO `wp_postmeta` VALUES("27250", "14498", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("27251", "14498", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("27252", "14498", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("27253", "14498", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("27254", "14498", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("27255", "14498", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("27256", "14498", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("27257", "14498", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("27258", "14498", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("27259", "14498", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("27260", "14498", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("27261", "14498", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("27262", "14498", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("27263", "14498", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("27264", "14498", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27265", "14498", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("27266", "14498", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("27267", "14498", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("27268", "14498", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("27269", "14498", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("27270", "14498", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("27271", "14498", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("27272", "14498", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("27273", "14498", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("27274", "14498", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("27275", "14498", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("27276", "14498", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("27277", "14498", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("27278", "14498", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("27279", "14498", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("27280", "14498", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("27281", "14498", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("27282", "14498", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("27283", "14498", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27284", "14498", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("27285", "14498", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("27286", "14498", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("27287", "14498", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("27288", "14498", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("27289", "14498", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("27290", "14498", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27291", "14498", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("27292", "14498", "cs_sticky_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("27293", "14498", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("27294", "14498", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("27295", "14498", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("27296", "14498", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("27297", "14498", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("27298", "14498", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("27299", "14498", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("27300", "14498", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("27301", "14498", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("27302", "14498", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("27303", "14498", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("27304", "14498", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("27305", "14498", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("27306", "14498", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27307", "14498", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("27308", "14498", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("27309", "14498", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("27310", "14498", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("27311", "14498", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("27312", "14498", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("27313", "14498", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("27314", "14498", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("27315", "14498", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("27316", "14498", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("27317", "14498", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("27318", "14498", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("27319", "14498", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("27320", "14498", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("27321", "14498", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("27322", "14498", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("27323", "14498", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("27324", "14498", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("27325", "14498", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("27326", "14498", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("27327", "14498", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("27328", "14498", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("27329", "14498", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("27330", "14498", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("27331", "14498", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("27332", "14498", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("27333", "14498", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("27334", "14498", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("27335", "14498", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("27336", "14498", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("27337", "14498", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("27338", "14498", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("27339", "14498", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("27340", "14498", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("27341", "14498", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("27342", "14498", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("27343", "14498", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("27344", "14498", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("27345", "14498", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("27346", "14498", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("27347", "14498", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27348", "14498", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("27349", "14498", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("27350", "14498", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("27351", "14498", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("27352", "14498", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("27353", "14498", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("27354", "14498", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("27355", "14498", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("27356", "14498", "cs_bottom_top_image_arrow_color", "#f5f5f5");
INSERT INTO `wp_postmeta` VALUES("27357", "14498", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("27358", "14498", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27359", "14498", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("27360", "14498", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("27361", "14498", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("27362", "14498", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("27363", "14498", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("27364", "14498", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("27365", "14498", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("27366", "14498", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("27367", "14498", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("27368", "14498", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("27369", "14498", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("27370", "14498", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("27371", "14498", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("27372", "14498", "price", "");
INSERT INTO `wp_postmeta` VALUES("27373", "14498", "value", "");
INSERT INTO `wp_postmeta` VALUES("27374", "14498", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("27375", "14498", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("27376", "14498", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("27377", "14498", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("27378", "14498", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("27379", "14498", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("27380", "14498", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("27381", "14498", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("27382", "14498", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("27383", "14498", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("27384", "14498", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("27385", "14498", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("27386", "14498", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("27387", "14498", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("27388", "14498", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("27389", "14498", "team_qualification", "");
INSERT INTO `wp_postmeta` VALUES("27390", "14498", "team_experience", "");
INSERT INTO `wp_postmeta` VALUES("27391", "14498", "team_contact_info", "");
INSERT INTO `wp_postmeta` VALUES("27392", "14498", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("27393", "14498", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("27394", "14498", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("27395", "14498", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("27396", "14498", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("27397", "14498", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27398", "14498", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("27399", "14498", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("27400", "14498", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("27401", "14498", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27402", "14498", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("27403", "14498", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("27404", "14498", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("27405", "14498", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("27406", "14498", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("27407", "14498", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("27408", "14498", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("27409", "14498", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("27410", "14498", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("27411", "14498", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("27412", "14498", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("27413", "14498", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("27414", "14498", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("27415", "14498", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("27416", "14498", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("27417", "14498", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27418", "14498", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27419", "14498", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27420", "14498", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27421", "14498", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("27422", "14498", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("27423", "14498", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("27424", "14498", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("27425", "14498", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("27426", "14498", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("27427", "14498", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("27428", "14498", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("27429", "14498", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("27430", "14498", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("27431", "14498", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("27432", "14498", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("27433", "14498", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("27434", "14498", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("27435", "14498", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("27460", "3503", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27461", "3503", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("27462", "3503", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("27463", "3503", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("27464", "3503", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("27465", "3503", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("27466", "3503", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("27467", "3503", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("27468", "3503", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("27469", "3503", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("27470", "3503", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("27484", "14533", "_wp_attached_file", "2015/06/man211.png");
INSERT INTO `wp_postmeta` VALUES("27485", "14533", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:789;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2015/06/man211.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"man211-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:18:\"man211-600x570.png\";s:5:\"width\";i:600;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"man211-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"man211-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"man211-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"man211-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"man211-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"man211-789x400.png\";s:5:\"width\";i:789;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"man211-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"man211-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("27486", "14534", "_wp_attached_file", "2015/06/man111.png");
INSERT INTO `wp_postmeta` VALUES("27487", "14534", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:702;s:6:\"height\";i:749;s:4:\"file\";s:18:\"2015/06/man111.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"man111-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:18:\"man111-562x600.png\";s:5:\"width\";i:562;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"man111-180x138.png\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"man111-540x272.png\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"man111-460x295.png\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"man111-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"man111-220x161.png\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"man111-702x400.png\";s:5:\"width\";i:702;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"man111-700x441.png\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"man111-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("27499", "14321", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("27500", "14321", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("27501", "14321", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("27502", "14321", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("27503", "14321", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("27504", "14321", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("27505", "14321", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("27506", "14321", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("27507", "14321", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("27508", "14321", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("27509", "14321", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("27577", "14474", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("27610", "14498", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("27611", "14498", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("27612", "14498", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("27627", "14476", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("27630", "14469", "_nectar_love", "0");
INSERT INTO `wp_postmeta` VALUES("27631", "14733", "_wp_attached_file", "2015/06/purplecity.jpg");
INSERT INTO `wp_postmeta` VALUES("27632", "14733", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:22:\"2015/06/purplecity.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"purplecity-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"purplecity-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"purplecity-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"purplecity-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"purplecity-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"purplecity-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"purplecity-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"purplecity-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"purplecity-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"purplecity-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"purplecity-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("54180", "15049", "_edit_lock", "1475252332:1");
INSERT INTO `wp_postmeta` VALUES("27642", "14767", "_wp_attached_file", "2015/02/purplehearts.jpg");
INSERT INTO `wp_postmeta` VALUES("27643", "14767", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:24:\"2015/02/purplehearts.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"purplehearts-150x150.jpg\";s:5:\"width\";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:\"purplehearts-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"purplehearts-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:24:\"purplehearts-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:24:\"purplehearts-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:24:\"purplehearts-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:24:\"purplehearts-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:24:\"purplehearts-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:24:\"purplehearts-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:24:\"purplehearts-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:22:\"purplehearts-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("28738", "3051", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("48129", "17274", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("52642", "17682", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52641", "17682", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52640", "17682", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("52639", "17682", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("52638", "17682", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52637", "17682", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52636", "17682", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("52635", "17682", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("52634", "17682", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("52633", "17682", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("52632", "17682", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("52631", "17682", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("52649", "17682", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52629", "17682", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("52628", "17682", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("52627", "17682", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("52626", "17682", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("52625", "17682", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52624", "17682", "_menu_item_object_id", "3503");
INSERT INTO `wp_postmeta` VALUES("52623", "17682", "_menu_item_menu_item_parent", "726");
INSERT INTO `wp_postmeta` VALUES("52622", "17682", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("52621", "17681", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52620", "17681", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("52619", "17681", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52618", "17681", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52617", "17681", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("52616", "17681", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("52615", "17681", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52614", "17681", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52613", "17681", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("52612", "17681", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("52611", "17681", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("52610", "17681", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("52609", "17681", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("52608", "17681", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("52648", "17681", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52606", "17681", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("52605", "17681", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("52604", "17681", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("52602", "17681", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52601", "17681", "_menu_item_object_id", "17530");
INSERT INTO `wp_postmeta` VALUES("52600", "17681", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("52599", "17681", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("52598", "17680", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52597", "17680", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("52596", "17680", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52595", "17680", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52594", "17680", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("52593", "17680", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("52592", "17680", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52591", "17680", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52590", "17680", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("52589", "17680", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("52588", "17680", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("52587", "17680", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("52586", "17680", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("52585", "17680", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("52647", "17680", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52583", "17680", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("52582", "17680", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("52581", "17680", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("52580", "17680", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("52579", "17680", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52578", "17680", "_menu_item_object_id", "3201");
INSERT INTO `wp_postmeta` VALUES("52577", "17680", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("52576", "17680", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("52575", "17679", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52574", "17679", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("52573", "17679", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52572", "17679", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52571", "17679", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("52570", "17679", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("52569", "17679", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52568", "17679", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52567", "17679", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("52566", "17679", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("52565", "17679", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("52564", "17679", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("52563", "17679", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("52557", "17679", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("52556", "17679", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("52555", "17679", "_menu_item_object_id", "14295");
INSERT INTO `wp_postmeta` VALUES("52554", "17679", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("52553", "17679", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("52769", "17704", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2016/01/slide-11.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slide-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slide-11-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slide-11-1170x457.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:20:\"slide-11-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52767", "666", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("52768", "17704", "_wp_attached_file", "2016/01/slide-11.jpg");
INSERT INTO `wp_postmeta` VALUES("52766", "666", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("52764", "666", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("52765", "666", "_thumbnail_id", "17453");
INSERT INTO `wp_postmeta` VALUES("52525", "14279", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("52524", "14279", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("52523", "14279", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("52521", "14279", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("52522", "14279", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("28739", "3051", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("28740", "3051", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("28741", "3051", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("28742", "3051", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("28743", "3051", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("28744", "3051", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("28745", "3051", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("28746", "3051", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("28747", "3051", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("28748", "3051", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("28749", "3051", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("28750", "3051", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("28751", "3051", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("28752", "3051", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("28753", "3051", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("28754", "3051", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("28755", "3051", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("28756", "3051", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("28757", "3051", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("28758", "3051", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("28759", "3051", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("28760", "3051", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("28761", "3051", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("28762", "3051", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("28763", "3051", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("28764", "3051", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("28765", "3051", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("28766", "3051", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("28767", "3051", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("28768", "3051", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("28769", "3051", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("30012", "1466", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29042", "15004", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29043", "15004", "_edit_lock", "1435074936:1");
INSERT INTO `wp_postmeta` VALUES("29044", "15005", "_wp_attached_file", "2015/06/team1.jpg");
INSERT INTO `wp_postmeta` VALUES("29045", "15005", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:890;s:6:\"height\";i:594;s:4:\"file\";s:17:\"2015/06/team1.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"team1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"team1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"team1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"team1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"team1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"team1-890x400.jpg\";s:5:\"width\";i:890;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"team1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"team1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29046", "15006", "_wp_attached_file", "2015/06/team2.jpg");
INSERT INTO `wp_postmeta` VALUES("29047", "15006", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:889;s:6:\"height\";i:593;s:4:\"file\";s:17:\"2015/06/team2.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"team2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"team2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"team2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"team2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"team2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"team2-889x400.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"team2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"team2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29048", "15007", "_wp_attached_file", "2015/06/team3.jpg");
INSERT INTO `wp_postmeta` VALUES("29049", "15007", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:886;s:6:\"height\";i:594;s:4:\"file\";s:17:\"2015/06/team3.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team3-600x402.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"team3-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"team3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"team3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"team3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"team3-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"team3-886x400.jpg\";s:5:\"width\";i:886;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"team3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"team3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29050", "15008", "_wp_attached_file", "2015/06/team4.jpg");
INSERT INTO `wp_postmeta` VALUES("29051", "15008", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:889;s:6:\"height\";i:594;s:4:\"file\";s:17:\"2015/06/team4.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team4-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"team4-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"team4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"team4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"team4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"team4-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"team4-889x400.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"team4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"team4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29052", "15009", "_wp_attached_file", "2015/06/team5.jpg");
INSERT INTO `wp_postmeta` VALUES("29053", "15009", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:886;s:6:\"height\";i:597;s:4:\"file\";s:17:\"2015/06/team5.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team5-600x404.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"team5-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"team5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"team5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"team5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"team5-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"team5-886x400.jpg\";s:5:\"width\";i:886;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"team5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"team5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29054", "15010", "_wp_attached_file", "2015/06/team6.jpg");
INSERT INTO `wp_postmeta` VALUES("29055", "15010", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:889;s:6:\"height\";i:597;s:4:\"file\";s:17:\"2015/06/team6.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"team6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"team6-600x403.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"team6-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"team6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"team6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"team6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"team6-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"team6-889x400.jpg\";s:5:\"width\";i:889;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"team6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"team6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29056", "15004", "_thumbnail_id", "15040");
INSERT INTO `wp_postmeta` VALUES("29057", "15004", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29058", "15004", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29059", "15004", "price", "");
INSERT INTO `wp_postmeta` VALUES("29060", "15004", "value", "");
INSERT INTO `wp_postmeta` VALUES("29061", "15004", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29062", "15004", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29063", "15004", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29064", "15004", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29065", "15004", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29066", "15004", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29067", "15004", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29068", "15004", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29069", "15004", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29070", "15004", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29071", "15004", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29072", "15004", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29073", "15004", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29074", "15004", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29075", "15004", "team_position", "MANAGING DIRECTOR");
INSERT INTO `wp_postmeta` VALUES("29076", "15004", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29077", "15004", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29078", "15004", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29079", "15004", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29080", "15004", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29081", "15004", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29082", "15004", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29083", "15004", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29084", "15004", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29085", "15004", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29086", "15004", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29087", "15004", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29088", "15004", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29089", "15004", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29090", "15004", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29091", "15004", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29092", "15004", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29093", "15004", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29094", "15004", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29095", "15004", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29096", "15004", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29097", "15004", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29098", "15004", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29099", "15004", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29100", "15004", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29101", "15004", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29102", "15004", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29103", "15004", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29104", "15004", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29105", "15004", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29106", "15004", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29107", "15004", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29108", "15004", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29109", "15004", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29110", "15004", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29111", "15004", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29112", "15004", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29113", "15004", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29114", "15004", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29115", "15004", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29116", "15004", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29117", "15004", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29118", "15004", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29119", "15004", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29120", "15011", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29121", "15011", "_edit_lock", "1434972219:1");
INSERT INTO `wp_postmeta` VALUES("29122", "15011", "_thumbnail_id", "15043");
INSERT INTO `wp_postmeta` VALUES("29123", "15011", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29124", "15011", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29125", "15011", "price", "");
INSERT INTO `wp_postmeta` VALUES("29126", "15011", "value", "");
INSERT INTO `wp_postmeta` VALUES("29127", "15011", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29128", "15011", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29129", "15011", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29130", "15011", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29131", "15011", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29132", "15011", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29133", "15011", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29134", "15011", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29135", "15011", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29136", "15011", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29137", "15011", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29138", "15011", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29139", "15011", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29140", "15011", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29141", "15011", "team_position", "Creative Director");
INSERT INTO `wp_postmeta` VALUES("29142", "15011", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29143", "15011", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29144", "15011", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29145", "15011", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29146", "15011", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29147", "15011", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29148", "15011", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29149", "15011", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29150", "15011", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29151", "15011", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29152", "15011", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29153", "15011", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29154", "15011", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29155", "15011", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29156", "15011", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29157", "15011", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29158", "15011", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29159", "15011", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29160", "15011", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29161", "15011", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29162", "15011", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29163", "15011", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29164", "15011", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29165", "15011", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29166", "15011", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29167", "15011", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29168", "15011", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29169", "15011", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29170", "15011", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29171", "15011", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29172", "15011", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29173", "15011", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29174", "15011", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29175", "15011", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29176", "15011", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29177", "15011", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29178", "15011", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29179", "15011", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29180", "15011", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29181", "15011", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29182", "15011", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29183", "15011", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29184", "15011", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29185", "15011", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29186", "15012", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29187", "15012", "_edit_lock", "1434972163:1");
INSERT INTO `wp_postmeta` VALUES("29188", "15012", "_thumbnail_id", "15039");
INSERT INTO `wp_postmeta` VALUES("29189", "15012", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29190", "15012", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29191", "15012", "price", "");
INSERT INTO `wp_postmeta` VALUES("29192", "15012", "value", "");
INSERT INTO `wp_postmeta` VALUES("29193", "15012", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29194", "15012", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29195", "15012", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29196", "15012", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29197", "15012", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29198", "15012", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29199", "15012", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29200", "15012", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29201", "15012", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29202", "15012", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29203", "15012", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29204", "15012", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29205", "15012", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29206", "15012", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29207", "15012", "team_position", "Tech Director");
INSERT INTO `wp_postmeta` VALUES("29208", "15012", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29209", "15012", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29210", "15012", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29211", "15012", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29212", "15012", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29213", "15012", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29214", "15012", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29215", "15012", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29216", "15012", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29217", "15012", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29218", "15012", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29219", "15012", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29220", "15012", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29221", "15012", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29222", "15012", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29223", "15012", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29224", "15012", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29225", "15012", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29226", "15012", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29227", "15012", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29228", "15012", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29229", "15012", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29230", "15012", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29231", "15012", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29232", "15012", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29233", "15012", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29234", "15012", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29235", "15012", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29236", "15012", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29237", "15012", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29238", "15012", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29239", "15012", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29240", "15012", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29241", "15012", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29242", "15012", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29243", "15012", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29244", "15012", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29245", "15012", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29246", "15012", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29247", "15012", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29248", "15012", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29249", "15012", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29250", "15012", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29251", "15012", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("52519", "14279", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("52518", "17656", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2015/12/slider-2-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"slider-2-2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"slider-2-2-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:22:\"slider-2-2-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52517", "17656", "_wp_attached_file", "2015/12/slider-2-2.jpg");
INSERT INTO `wp_postmeta` VALUES("29318", "15014", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29319", "15014", "_edit_lock", "1435068541:1");
INSERT INTO `wp_postmeta` VALUES("29320", "15014", "_thumbnail_id", "15042");
INSERT INTO `wp_postmeta` VALUES("29321", "15014", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29322", "15014", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29323", "15014", "price", "");
INSERT INTO `wp_postmeta` VALUES("29324", "15014", "value", "");
INSERT INTO `wp_postmeta` VALUES("29325", "15014", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29326", "15014", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29327", "15014", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29328", "15014", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29329", "15014", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29330", "15014", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29331", "15014", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29332", "15014", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29333", "15014", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29334", "15014", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29335", "15014", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29336", "15014", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29337", "15014", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29338", "15014", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29339", "15014", "team_position", "UI & UX Developer");
INSERT INTO `wp_postmeta` VALUES("29340", "15014", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29341", "15014", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29342", "15014", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29343", "15014", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29344", "15014", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29345", "15014", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29346", "15014", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29347", "15014", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29348", "15014", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29349", "15014", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29350", "15014", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29351", "15014", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29352", "15014", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29353", "15014", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29354", "15014", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29355", "15014", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29356", "15014", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29357", "15014", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29358", "15014", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29359", "15014", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29360", "15014", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29361", "15014", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29362", "15014", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29363", "15014", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29364", "15014", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29365", "15014", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29366", "15014", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29367", "15014", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29368", "15014", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29369", "15014", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29370", "15014", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29371", "15014", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29372", "15014", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29373", "15014", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29374", "15014", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29375", "15014", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29376", "15014", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29377", "15014", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29378", "15014", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29379", "15014", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29380", "15014", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29381", "15014", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29382", "15014", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29383", "15014", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29384", "15015", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29385", "15015", "_edit_lock", "1434989497:1");
INSERT INTO `wp_postmeta` VALUES("29386", "15015", "_thumbnail_id", "15038");
INSERT INTO `wp_postmeta` VALUES("29387", "15015", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29388", "15015", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29389", "15015", "price", "");
INSERT INTO `wp_postmeta` VALUES("29390", "15015", "value", "");
INSERT INTO `wp_postmeta` VALUES("29391", "15015", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29392", "15015", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29393", "15015", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29394", "15015", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29395", "15015", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29396", "15015", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29397", "15015", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29398", "15015", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29399", "15015", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29400", "15015", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29401", "15015", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29402", "15015", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29403", "15015", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29404", "15015", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29405", "15015", "team_position", "Theme Developer");
INSERT INTO `wp_postmeta` VALUES("29406", "15015", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29407", "15015", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29408", "15015", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29409", "15015", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29410", "15015", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29411", "15015", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29412", "15015", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29413", "15015", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29414", "15015", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29415", "15015", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29416", "15015", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29417", "15015", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29418", "15015", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29419", "15015", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29420", "15015", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29421", "15015", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29422", "15015", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29423", "15015", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29424", "15015", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29425", "15015", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29426", "15015", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29427", "15015", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29428", "15015", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29429", "15015", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29430", "15015", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29431", "15015", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29432", "15015", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29433", "15015", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29434", "15015", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29435", "15015", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29436", "15015", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29437", "15015", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29438", "15015", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29439", "15015", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29440", "15015", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29441", "15015", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29442", "15015", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29443", "15015", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29444", "15015", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29445", "15015", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29446", "15015", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29447", "15015", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29448", "15015", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29449", "15015", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29452", "15004", "cs_portfolio_category_details", "61");
INSERT INTO `wp_postmeta` VALUES("29453", "15004", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("52515", "17655", "_wp_attached_file", "2015/12/slider-2-3.jpg");
INSERT INTO `wp_postmeta` VALUES("52516", "17655", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2015/12/slider-2-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"slider-2-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"slider-2-3-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"slider-2-3-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:22:\"slider-2-3-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("29491", "15038", "_wp_attached_file", "2015/06/PC4C3613.jpg");
INSERT INTO `wp_postmeta` VALUES("29492", "15038", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/PC4C3613.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PC4C3613-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"PC4C3613-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PC4C3613-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"PC4C3613-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"PC4C3613-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"PC4C3613-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"PC4C3613-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"PC4C3613-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"PC4C3613-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"PC4C3613-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"PC4C3613-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29493", "15039", "_wp_attached_file", "2015/06/PC4C3603.jpg");
INSERT INTO `wp_postmeta` VALUES("29494", "15039", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/PC4C3603.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PC4C3603-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"PC4C3603-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PC4C3603-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"PC4C3603-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"PC4C3603-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"PC4C3603-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"PC4C3603-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"PC4C3603-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"PC4C3603-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"PC4C3603-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"PC4C3603-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29495", "15040", "_wp_attached_file", "2015/06/PC4C3649.jpg");
INSERT INTO `wp_postmeta` VALUES("29496", "15040", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/PC4C3649.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PC4C3649-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"PC4C3649-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PC4C3649-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"PC4C3649-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"PC4C3649-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"PC4C3649-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"PC4C3649-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"PC4C3649-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"PC4C3649-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"PC4C3649-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"PC4C3649-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29497", "15041", "_wp_attached_file", "2015/06/PC4C3594.jpg");
INSERT INTO `wp_postmeta` VALUES("29498", "15041", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/PC4C3594.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PC4C3594-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"PC4C3594-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PC4C3594-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"PC4C3594-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"PC4C3594-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"PC4C3594-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"PC4C3594-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"PC4C3594-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"PC4C3594-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"PC4C3594-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"PC4C3594-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29499", "15042", "_wp_attached_file", "2015/06/PC4C3625.jpg");
INSERT INTO `wp_postmeta` VALUES("29500", "15042", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:934;s:4:\"file\";s:20:\"2015/06/PC4C3625.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PC4C3625-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"PC4C3625-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PC4C3625-1170x781.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:781;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"PC4C3625-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"PC4C3625-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"PC4C3625-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"PC4C3625-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"PC4C3625-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"PC4C3625-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"PC4C3625-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"PC4C3625-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29501", "15043", "_wp_attached_file", "2015/06/PC4C3568.jpg");
INSERT INTO `wp_postmeta` VALUES("29502", "15043", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/PC4C3568.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"PC4C3568-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"PC4C3568-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"PC4C3568-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"PC4C3568-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"PC4C3568-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"PC4C3568-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"PC4C3568-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"PC4C3568-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"PC4C3568-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"PC4C3568-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"PC4C3568-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29503", "15015", "cs_portfolio_category_details", "8");
INSERT INTO `wp_postmeta` VALUES("29504", "15015", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29505", "15014", "cs_portfolio_category_details", "6");
INSERT INTO `wp_postmeta` VALUES("29506", "15014", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29507", "15012", "cs_portfolio_category_details", "8");
INSERT INTO `wp_postmeta` VALUES("29508", "15012", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29509", "15011", "cs_portfolio_category_details", "50");
INSERT INTO `wp_postmeta` VALUES("29510", "15011", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29511", "15049", "_wp_attached_file", "2015/06/logo2dark.png");
INSERT INTO `wp_postmeta` VALUES("29512", "15049", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:440;s:6:\"height\";i:78;s:4:\"file\";s:21:\"2015/06/logo2dark.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"logo2dark-150x78.png\";s:5:\"width\";i:150;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"logo2dark-180x78.png\";s:5:\"width\";i:180;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"logo2dark-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"logo2dark-220x78.png\";s:5:\"width\";i:220;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"logo2dark-66x66.png\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("29519", "15052", "_wp_attached_file", "2015/02/about2.jpg");
INSERT INTO `wp_postmeta` VALUES("29520", "15052", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:18:\"2015/02/about2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"about2-150x150.jpg\";s:5:\"width\";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:\"about2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"about2-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"about2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"about2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"about2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"about2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"about2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"about2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"about2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"about2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("29540", "15077", "_wp_attached_file", "2015/02/webdev-1.jpg");
INSERT INTO `wp_postmeta` VALUES("29541", "15077", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:740;s:4:\"file\";s:20:\"2015/02/webdev-1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"webdev-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"webdev-1-600x296.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"webdev-1-1170x577.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"webdev-1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"webdev-1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"webdev-1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"webdev-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"webdev-1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"webdev-1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"webdev-1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"webdev-1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("29544", "15104", "_wp_attached_file", "2015/02/macnew.jpg");
INSERT INTO `wp_postmeta` VALUES("29542", "15080", "_wp_attached_file", "2015/02/webdev-11.jpg");
INSERT INTO `wp_postmeta` VALUES("29543", "15080", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:740;s:4:\"file\";s:21:\"2015/02/webdev-11.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"webdev-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"webdev-11-600x296.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"webdev-11-1170x577.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"webdev-11-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"webdev-11-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"webdev-11-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"webdev-11-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"webdev-11-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"webdev-11-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"webdev-11-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"webdev-11-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}");
INSERT INTO `wp_postmeta` VALUES("29553", "15116", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/about3.1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about3.1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about3.1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about3.1-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"about3.1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"about3.1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"about3.1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"about3.1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"about3.1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"about3.1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"about3.1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"about3.1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29545", "15104", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:930;s:4:\"file\";s:18:\"2015/02/macnew.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"macnew-150x150.jpg\";s:5:\"width\";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:\"macnew-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"macnew-1170x777.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"macnew-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"macnew-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"macnew-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"macnew-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"macnew-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"macnew-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"macnew-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"macnew-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("29552", "15116", "_wp_attached_file", "2015/06/about3.1.jpg");
INSERT INTO `wp_postmeta` VALUES("29554", "15117", "_wp_attached_file", "2015/06/about3.2.jpg");
INSERT INTO `wp_postmeta` VALUES("29555", "15117", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/about3.2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about3.2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about3.2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about3.2-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"about3.2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"about3.2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"about3.2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"about3.2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"about3.2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"about3.2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"about3.2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"about3.2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29556", "15118", "_wp_attached_file", "2015/06/about3.3.jpg");
INSERT INTO `wp_postmeta` VALUES("29557", "15118", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/about3.3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about3.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:20:\"about3.3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about3.3-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"about3.3-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"about3.3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"about3.3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"about3.3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"about3.3-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"about3.3-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"about3.3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"about3.3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29558", "15119", "_wp_attached_file", "2015/06/about3.4.jpg");
INSERT INTO `wp_postmeta` VALUES("29559", "15119", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/about3.4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about3.4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about3.4-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about3.4-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"about3.4-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"about3.4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"about3.4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"about3.4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"about3.4-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"about3.4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"about3.4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"about3.4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29560", "15120", "_wp_attached_file", "2015/06/about3.5.jpg");
INSERT INTO `wp_postmeta` VALUES("29561", "15120", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/about3.5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about3.5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about3.5-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about3.5-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"about3.5-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"about3.5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"about3.5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"about3.5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"about3.5-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"about3.5-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"about3.5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"about3.5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29562", "15121", "_wp_attached_file", "2015/06/about3.6.jpg");
INSERT INTO `wp_postmeta` VALUES("29563", "15121", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:20:\"2015/06/about3.6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about3.6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"about3.6-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about3.6-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:20:\"about3.6-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:20:\"about3.6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:20:\"about3.6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:20:\"about3.6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:20:\"about3.6-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:20:\"about3.6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:20:\"about3.6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:18:\"about3.6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:1:{i:0;s:9:\"890x590_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("29564", "15115", "_thumbnail_id", "15116");
INSERT INTO `wp_postmeta` VALUES("29565", "15115", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29566", "15115", "_edit_lock", "1434989648:1");
INSERT INTO `wp_postmeta` VALUES("29567", "15115", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29568", "15115", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29569", "15115", "cs_portfolio_category_details", "7");
INSERT INTO `wp_postmeta` VALUES("29570", "15115", "cs_portfolio_category_layout", "style1");
INSERT INTO `wp_postmeta` VALUES("29571", "15115", "price", "");
INSERT INTO `wp_postmeta` VALUES("29572", "15115", "value", "");
INSERT INTO `wp_postmeta` VALUES("29573", "15115", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29574", "15115", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29575", "15115", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29576", "15115", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29577", "15115", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29578", "15115", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29579", "15115", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29580", "15115", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29581", "15115", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29582", "15115", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29583", "15115", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29584", "15115", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29585", "15115", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29586", "15115", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29587", "15115", "team_position", "Lead Developer");
INSERT INTO `wp_postmeta` VALUES("29588", "15115", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29589", "15115", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29590", "15115", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29591", "15115", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29592", "15115", "team_dribbble", "#");
INSERT INTO `wp_postmeta` VALUES("29593", "15115", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("29594", "15115", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29595", "15115", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29596", "15115", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29597", "15115", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29598", "15115", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29599", "15115", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29600", "15115", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29601", "15115", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29602", "15115", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29603", "15115", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29604", "15115", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29605", "15115", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29606", "15115", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29607", "15115", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29608", "15115", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29609", "15115", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29610", "15115", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29611", "15115", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29612", "15115", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29613", "15115", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29614", "15115", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29615", "15115", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29616", "15115", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29617", "15115", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29618", "15115", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29619", "15115", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29620", "15115", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29621", "15115", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29622", "15115", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29623", "15115", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29624", "15115", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29625", "15115", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29626", "15115", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29627", "15115", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29628", "15115", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29629", "15115", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29630", "15115", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29631", "15115", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29632", "15124", "_thumbnail_id", "15117");
INSERT INTO `wp_postmeta` VALUES("29633", "15124", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29634", "15124", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29635", "15124", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29636", "15124", "cs_portfolio_category_details", "8");
INSERT INTO `wp_postmeta` VALUES("29637", "15124", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29638", "15124", "price", "");
INSERT INTO `wp_postmeta` VALUES("29639", "15124", "value", "");
INSERT INTO `wp_postmeta` VALUES("29640", "15124", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29641", "15124", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29642", "15124", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29643", "15124", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29644", "15124", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29645", "15124", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29646", "15124", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29647", "15124", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29648", "15124", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29649", "15124", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29650", "15124", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29651", "15124", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29652", "15124", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29653", "15124", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29654", "15124", "team_position", "Founder");
INSERT INTO `wp_postmeta` VALUES("29655", "15124", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29656", "15124", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29657", "15124", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29658", "15124", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29659", "15124", "team_dribbble", "#");
INSERT INTO `wp_postmeta` VALUES("29660", "15124", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("29661", "15124", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29662", "15124", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29663", "15124", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29664", "15124", "team_vimeo", "#");
INSERT INTO `wp_postmeta` VALUES("29665", "15124", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29666", "15124", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29667", "15124", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29668", "15124", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29669", "15124", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29670", "15124", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29671", "15124", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29672", "15124", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29673", "15124", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29674", "15124", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29675", "15124", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29676", "15124", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29677", "15124", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29678", "15124", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29679", "15124", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29680", "15124", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29681", "15124", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29682", "15124", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29683", "15124", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29684", "15124", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29685", "15124", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29686", "15124", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29687", "15124", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29688", "15124", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29689", "15124", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29690", "15124", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29691", "15124", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29692", "15124", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29693", "15124", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29694", "15124", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29695", "15124", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29696", "15124", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29697", "15124", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29698", "15124", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29699", "15124", "_edit_lock", "1434989742:1");
INSERT INTO `wp_postmeta` VALUES("29700", "15125", "_thumbnail_id", "15118");
INSERT INTO `wp_postmeta` VALUES("29701", "15125", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29702", "15125", "_edit_lock", "1434989814:1");
INSERT INTO `wp_postmeta` VALUES("29703", "15125", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29704", "15125", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29705", "15125", "cs_portfolio_category_details", "61");
INSERT INTO `wp_postmeta` VALUES("29706", "15125", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29707", "15125", "price", "");
INSERT INTO `wp_postmeta` VALUES("29708", "15125", "value", "");
INSERT INTO `wp_postmeta` VALUES("29709", "15125", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29710", "15125", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29711", "15125", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29712", "15125", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29713", "15125", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29714", "15125", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29715", "15125", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29716", "15125", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29717", "15125", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29718", "15125", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29719", "15125", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29720", "15125", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29721", "15125", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29722", "15125", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29723", "15125", "team_position", "Marketing Director");
INSERT INTO `wp_postmeta` VALUES("29724", "15125", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29725", "15125", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29726", "15125", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29727", "15125", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29728", "15125", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29729", "15125", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29730", "15125", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29731", "15125", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29732", "15125", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29733", "15125", "team_vimeo", "#");
INSERT INTO `wp_postmeta` VALUES("29734", "15125", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29735", "15125", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29736", "15125", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29737", "15125", "team_github", "#");
INSERT INTO `wp_postmeta` VALUES("29738", "15125", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29739", "15125", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29740", "15125", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29741", "15125", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29742", "15125", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29743", "15125", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29744", "15125", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29745", "15125", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29746", "15125", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29747", "15125", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29748", "15125", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29749", "15125", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29750", "15125", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29751", "15125", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29752", "15125", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29753", "15125", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29754", "15125", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29755", "15125", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29756", "15125", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29757", "15125", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29758", "15125", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29759", "15125", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29760", "15125", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29761", "15125", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29762", "15125", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29763", "15125", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29764", "15125", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29765", "15125", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29766", "15125", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29767", "15125", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29768", "15126", "_thumbnail_id", "15119");
INSERT INTO `wp_postmeta` VALUES("29769", "15126", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29770", "15126", "_edit_lock", "1435047914:1");
INSERT INTO `wp_postmeta` VALUES("29771", "15126", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29772", "15126", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29773", "15126", "cs_portfolio_category_details", "61");
INSERT INTO `wp_postmeta` VALUES("29774", "15126", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29775", "15126", "price", "");
INSERT INTO `wp_postmeta` VALUES("29776", "15126", "value", "");
INSERT INTO `wp_postmeta` VALUES("29777", "15126", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29778", "15126", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29779", "15126", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29780", "15126", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29781", "15126", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29782", "15126", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29783", "15126", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29784", "15126", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29785", "15126", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29786", "15126", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29787", "15126", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29788", "15126", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29789", "15126", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29790", "15126", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29791", "15126", "team_position", "Account Manager");
INSERT INTO `wp_postmeta` VALUES("29792", "15126", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29793", "15126", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29794", "15126", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29795", "15126", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29796", "15126", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("29797", "15126", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29798", "15126", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29799", "15126", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29800", "15126", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29801", "15126", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29802", "15126", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29803", "15126", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29804", "15126", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29805", "15126", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29806", "15126", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29807", "15126", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29808", "15126", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29809", "15126", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29810", "15126", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29811", "15126", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29812", "15126", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29813", "15126", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29814", "15126", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29815", "15126", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29816", "15126", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29817", "15126", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29818", "15126", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29819", "15126", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29820", "15126", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29821", "15126", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29822", "15126", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29823", "15126", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29824", "15126", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29825", "15126", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29826", "15126", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29827", "15126", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29828", "15126", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29829", "15126", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29830", "15126", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29831", "15126", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29832", "15126", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29833", "15126", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29834", "15126", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29835", "15126", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29836", "15127", "_thumbnail_id", "15120");
INSERT INTO `wp_postmeta` VALUES("29837", "15127", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29838", "15127", "_edit_lock", "1434989952:1");
INSERT INTO `wp_postmeta` VALUES("29839", "15127", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29840", "15127", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29841", "15127", "cs_portfolio_category_details", "6");
INSERT INTO `wp_postmeta` VALUES("29842", "15127", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29843", "15127", "price", "");
INSERT INTO `wp_postmeta` VALUES("29844", "15127", "value", "");
INSERT INTO `wp_postmeta` VALUES("29845", "15127", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29846", "15127", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29847", "15127", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29848", "15127", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29849", "15127", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29850", "15127", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29851", "15127", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29852", "15127", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29853", "15127", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29854", "15127", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29855", "15127", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29856", "15127", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29857", "15127", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29858", "15127", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29859", "15127", "team_position", "Designer");
INSERT INTO `wp_postmeta` VALUES("29860", "15127", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29861", "15127", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29862", "15127", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29863", "15127", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29864", "15127", "team_dribbble", "#");
INSERT INTO `wp_postmeta` VALUES("29865", "15127", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("29866", "15127", "team_rss", "#");
INSERT INTO `wp_postmeta` VALUES("29867", "15127", "team_flickr", "#");
INSERT INTO `wp_postmeta` VALUES("29868", "15127", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29869", "15127", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29870", "15127", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29871", "15127", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29872", "15127", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29873", "15127", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29874", "15127", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29875", "15127", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29876", "15127", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29877", "15127", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29878", "15127", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29879", "15127", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29880", "15127", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29881", "15127", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29882", "15127", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29883", "15127", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29884", "15127", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29885", "15127", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29886", "15127", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29887", "15127", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29888", "15127", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29889", "15127", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29890", "15127", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29891", "15127", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29892", "15127", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29893", "15127", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29894", "15127", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29895", "15127", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29896", "15127", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29897", "15127", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29898", "15127", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29899", "15127", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29900", "15127", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29901", "15127", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29902", "15127", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29903", "15127", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29904", "15128", "_thumbnail_id", "15121");
INSERT INTO `wp_postmeta` VALUES("29905", "15128", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("29906", "15128", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("29907", "15128", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("29908", "15128", "cs_portfolio_category_details", "50");
INSERT INTO `wp_postmeta` VALUES("29909", "15128", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("29910", "15128", "price", "");
INSERT INTO `wp_postmeta` VALUES("29911", "15128", "value", "");
INSERT INTO `wp_postmeta` VALUES("29912", "15128", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("29913", "15128", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("29914", "15128", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("29915", "15128", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("29916", "15128", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("29917", "15128", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("29918", "15128", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("29919", "15128", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("29920", "15128", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("29921", "15128", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("29922", "15128", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("29923", "15128", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("29924", "15128", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("29925", "15128", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("29926", "15128", "team_position", "Developer");
INSERT INTO `wp_postmeta` VALUES("29927", "15128", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("29928", "15128", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("29929", "15128", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("29930", "15128", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("29931", "15128", "team_dribbble", "#");
INSERT INTO `wp_postmeta` VALUES("29932", "15128", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29933", "15128", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("29934", "15128", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("29935", "15128", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("29936", "15128", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29937", "15128", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("29938", "15128", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("29939", "15128", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("29940", "15128", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("29941", "15128", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("29942", "15128", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("29943", "15128", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("29944", "15128", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("29945", "15128", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("29946", "15128", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("29947", "15128", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("29948", "15128", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("29949", "15128", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("29950", "15128", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("29951", "15128", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("29952", "15128", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29953", "15128", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29954", "15128", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29955", "15128", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29956", "15128", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("29957", "15128", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("29958", "15128", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("29959", "15128", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("29960", "15128", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("29961", "15128", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("29962", "15128", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("29963", "15128", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("29964", "15128", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("29965", "15128", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("29966", "15128", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("29967", "15128", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("29968", "15128", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("29969", "15128", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("29970", "15128", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("29971", "15128", "_edit_lock", "1434990053:1");
INSERT INTO `wp_postmeta` VALUES("30013", "28", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30014", "1465", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30015", "15126", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30234", "15159", "_wp_attached_file", "2015/06/corpabout.jpg");
INSERT INTO `wp_postmeta` VALUES("30235", "15159", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:870;s:4:\"file\";s:21:\"2015/06/corpabout.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"corpabout-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"corpabout-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"corpabout-1170x727.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"corpabout-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"corpabout-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"corpabout-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"corpabout-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"corpabout-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"corpabout-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"corpabout-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"corpabout-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30257", "15224", "_wp_attached_file", "2015/06/london.jpg");
INSERT INTO `wp_postmeta` VALUES("30258", "15224", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:788;s:4:\"file\";s:18:\"2015/06/london.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"london-150x150.jpg\";s:5:\"width\";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:\"london-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"london-1170x659.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"london-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"london-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"london-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"london-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"london-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"london-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"london-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"london-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30267", "15258", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30268", "15258", "_edit_lock", "1436193289:1");
INSERT INTO `wp_postmeta` VALUES("30269", "15259", "_wp_attached_file", "2015/06/corp7.jpg");
INSERT INTO `wp_postmeta` VALUES("30270", "15259", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp7.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp7-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp7-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp7-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp7-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp7-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp7-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp7-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp7-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp7-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp7-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30271", "15260", "_wp_attached_file", "2015/06/corp6.jpg");
INSERT INTO `wp_postmeta` VALUES("30272", "15260", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp6.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp6-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp6-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp6-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp6-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp6-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp6-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp6-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp6-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp6-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp6-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30273", "15261", "_wp_attached_file", "2015/06/corp5.jpg");
INSERT INTO `wp_postmeta` VALUES("30274", "15261", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp5.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp5-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp5-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp5-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp5-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp5-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp5-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp5-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp5-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp5-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp5-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30275", "15262", "_wp_attached_file", "2015/06/corp4.jpg");
INSERT INTO `wp_postmeta` VALUES("30276", "15262", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp4.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp4-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp4-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp4-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp4-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp4-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp4-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp4-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp4-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp4-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp4-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30277", "15263", "_wp_attached_file", "2015/06/corp2.jpg");
INSERT INTO `wp_postmeta` VALUES("30278", "15263", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp2.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp2-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp2-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp2-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp2-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp2-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30279", "15264", "_wp_attached_file", "2015/06/corp3.jpg");
INSERT INTO `wp_postmeta` VALUES("30280", "15264", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp3.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp3-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp3-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp3-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp3-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp3-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp3-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp3-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp3-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30281", "15265", "_wp_attached_file", "2015/06/corp1.jpg");
INSERT INTO `wp_postmeta` VALUES("30282", "15265", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp1-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp1-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp1-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp1-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp1-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30283", "15266", "_wp_attached_file", "2015/06/corp8.jpg");
INSERT INTO `wp_postmeta` VALUES("30284", "15266", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:780;s:4:\"file\";s:17:\"2015/06/corp8.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"corp8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"corp8-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"corp8-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"corp8-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"corp8-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"corp8-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"corp8-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"corp8-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"corp8-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"corp8-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"corp8-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("30285", "15258", "_thumbnail_id", "15266");
INSERT INTO `wp_postmeta` VALUES("30286", "15258", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30287", "15258", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30288", "15258", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30289", "15258", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30290", "15258", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30291", "15258", "price", "");
INSERT INTO `wp_postmeta` VALUES("30292", "15258", "value", "");
INSERT INTO `wp_postmeta` VALUES("30293", "15258", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30294", "15258", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30295", "15258", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30296", "15258", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30297", "15258", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30298", "15258", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30299", "15258", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30300", "15258", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30301", "15258", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30302", "15258", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30303", "15258", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30304", "15258", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30305", "15258", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30306", "15258", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30307", "15258", "team_position", "Managing Director");
INSERT INTO `wp_postmeta` VALUES("30308", "15258", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30309", "15258", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30310", "15258", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30311", "15258", "team_google_plus", "#");
INSERT INTO `wp_postmeta` VALUES("30312", "15258", "team_dribbble", "#");
INSERT INTO `wp_postmeta` VALUES("30313", "15258", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30314", "15258", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30315", "15258", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("30316", "15258", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("30317", "15258", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30318", "15258", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30319", "15258", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30320", "15258", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30321", "15258", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30322", "15258", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30323", "15258", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30324", "15258", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30325", "15258", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30326", "15258", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30327", "15258", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30328", "15258", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30329", "15258", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30330", "15258", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30331", "15258", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30332", "15258", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30333", "15258", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30334", "15258", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30335", "15258", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30336", "15258", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30337", "15258", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30338", "15258", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30339", "15258", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30340", "15258", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30341", "15258", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30342", "15258", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30343", "15258", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30344", "15258", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30345", "15258", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30346", "15258", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30347", "15258", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30348", "15258", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30349", "15258", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30350", "15258", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30351", "15258", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30352", "15268", "_thumbnail_id", "15262");
INSERT INTO `wp_postmeta` VALUES("30353", "15268", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30354", "15268", "_edit_lock", "1436194695:1");
INSERT INTO `wp_postmeta` VALUES("30355", "15268", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30356", "15268", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30357", "15268", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30358", "15268", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30359", "15268", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30360", "15268", "price", "");
INSERT INTO `wp_postmeta` VALUES("30361", "15268", "value", "");
INSERT INTO `wp_postmeta` VALUES("30362", "15268", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30363", "15268", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30364", "15268", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30365", "15268", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30366", "15268", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30367", "15268", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30368", "15268", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30369", "15268", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30370", "15268", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30371", "15268", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30372", "15268", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30373", "15268", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30374", "15268", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30375", "15268", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30376", "15268", "team_position", "Finance Director");
INSERT INTO `wp_postmeta` VALUES("30377", "15268", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30378", "15268", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30379", "15268", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30380", "15268", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30381", "15268", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("30382", "15268", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("30383", "15268", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30384", "15268", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("30385", "15268", "team_linkedin", "#");
INSERT INTO `wp_postmeta` VALUES("30386", "15268", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30387", "15268", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30388", "15268", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30389", "15268", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30390", "15268", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30391", "15268", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30392", "15268", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30393", "15268", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30394", "15268", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30395", "15268", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30396", "15268", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30397", "15268", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30398", "15268", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30399", "15268", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30400", "15268", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30401", "15268", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30402", "15268", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30403", "15268", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30404", "15268", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30405", "15268", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30406", "15268", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30407", "15268", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30408", "15268", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30409", "15268", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30410", "15268", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30411", "15268", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30412", "15268", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30413", "15268", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30414", "15268", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30415", "15268", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30416", "15268", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30417", "15268", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30418", "15268", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30419", "15268", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30420", "15268", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30421", "15269", "_thumbnail_id", "15263");
INSERT INTO `wp_postmeta` VALUES("30422", "15269", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30423", "15269", "_edit_lock", "1435069017:1");
INSERT INTO `wp_postmeta` VALUES("30424", "15269", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30425", "15269", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30426", "15269", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30427", "15269", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30428", "15269", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30429", "15269", "price", "");
INSERT INTO `wp_postmeta` VALUES("30430", "15269", "value", "");
INSERT INTO `wp_postmeta` VALUES("30431", "15269", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30432", "15269", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30433", "15269", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30434", "15269", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30435", "15269", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30436", "15269", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30437", "15269", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30438", "15269", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30439", "15269", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30440", "15269", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30441", "15269", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30442", "15269", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30443", "15269", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30444", "15269", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30445", "15269", "team_position", "Account Manager");
INSERT INTO `wp_postmeta` VALUES("30446", "15269", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30447", "15269", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30448", "15269", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30449", "15269", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30450", "15269", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("30451", "15269", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("30452", "15269", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30453", "15269", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("30454", "15269", "team_linkedin", "#");
INSERT INTO `wp_postmeta` VALUES("30455", "15269", "team_vimeo", "#");
INSERT INTO `wp_postmeta` VALUES("30456", "15269", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30457", "15269", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30458", "15269", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30459", "15269", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30460", "15269", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30461", "15269", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30462", "15269", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30463", "15269", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30464", "15269", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30465", "15269", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30466", "15269", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30467", "15269", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30468", "15269", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30469", "15269", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30470", "15269", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30471", "15269", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30472", "15269", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30473", "15269", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30474", "15269", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30475", "15269", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30476", "15269", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30477", "15269", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30478", "15269", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30479", "15269", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30480", "15269", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30481", "15269", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30482", "15269", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30483", "15269", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30484", "15269", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30485", "15269", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30486", "15269", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30487", "15269", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30488", "15269", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30489", "15269", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30490", "15270", "_thumbnail_id", "15264");
INSERT INTO `wp_postmeta` VALUES("30491", "15270", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30492", "15270", "_edit_lock", "1435113002:1");
INSERT INTO `wp_postmeta` VALUES("30493", "15270", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30494", "15270", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30495", "15270", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30496", "15270", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30497", "15270", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30498", "15270", "price", "");
INSERT INTO `wp_postmeta` VALUES("30499", "15270", "value", "");
INSERT INTO `wp_postmeta` VALUES("30500", "15270", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30501", "15270", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30502", "15270", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30503", "15270", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30504", "15270", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30505", "15270", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30506", "15270", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30507", "15270", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30508", "15270", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30509", "15270", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30510", "15270", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30511", "15270", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30512", "15270", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30513", "15270", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30514", "15270", "team_position", "Operations Director");
INSERT INTO `wp_postmeta` VALUES("30515", "15270", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30516", "15270", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30517", "15270", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30518", "15270", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30519", "15270", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("30520", "15270", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("30521", "15270", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30522", "15270", "team_flickr", "#");
INSERT INTO `wp_postmeta` VALUES("30523", "15270", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("30524", "15270", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30525", "15270", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30526", "15270", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30527", "15270", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30528", "15270", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30529", "15270", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30530", "15270", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30531", "15270", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30532", "15270", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30533", "15270", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30534", "15270", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30535", "15270", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30536", "15270", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30537", "15270", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30538", "15270", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30539", "15270", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30540", "15270", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30541", "15270", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30542", "15270", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30543", "15270", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30544", "15270", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30545", "15270", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30546", "15270", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30547", "15270", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30548", "15270", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30549", "15270", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30550", "15270", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30551", "15270", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30552", "15270", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30553", "15270", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30554", "15270", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30555", "15270", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30556", "15270", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30557", "15270", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30558", "15270", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30559", "15271", "_thumbnail_id", "15261");
INSERT INTO `wp_postmeta` VALUES("30560", "15271", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30561", "15271", "_edit_lock", "1435069266:1");
INSERT INTO `wp_postmeta` VALUES("30562", "15271", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30563", "15271", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30564", "15271", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30565", "15271", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30566", "15271", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30567", "15271", "price", "");
INSERT INTO `wp_postmeta` VALUES("30568", "15271", "value", "");
INSERT INTO `wp_postmeta` VALUES("30569", "15271", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30570", "15271", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30571", "15271", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30572", "15271", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30573", "15271", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30574", "15271", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30575", "15271", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30576", "15271", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30577", "15271", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30578", "15271", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30579", "15271", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30580", "15271", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30581", "15271", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30582", "15271", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30583", "15271", "team_position", "Public Relations");
INSERT INTO `wp_postmeta` VALUES("30584", "15271", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30585", "15271", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30586", "15271", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("30587", "15271", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30588", "15271", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("30589", "15271", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("30590", "15271", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30591", "15271", "team_flickr", "#");
INSERT INTO `wp_postmeta` VALUES("30592", "15271", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("30593", "15271", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30594", "15271", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30595", "15271", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30596", "15271", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30597", "15271", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30598", "15271", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30599", "15271", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30600", "15271", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30601", "15271", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30602", "15271", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30603", "15271", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30604", "15271", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30605", "15271", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30606", "15271", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30607", "15271", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30608", "15271", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30609", "15271", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30610", "15271", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30611", "15271", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30612", "15271", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30613", "15271", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30614", "15271", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30615", "15271", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30616", "15271", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30617", "15271", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30618", "15271", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30619", "15271", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30620", "15271", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30621", "15271", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30622", "15271", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30623", "15271", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30624", "15271", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30625", "15271", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30626", "15271", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30627", "15271", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30628", "15272", "_thumbnail_id", "15265");
INSERT INTO `wp_postmeta` VALUES("30629", "15272", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30630", "15272", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30631", "15272", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30632", "15272", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30633", "15272", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30634", "15272", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30635", "15272", "price", "");
INSERT INTO `wp_postmeta` VALUES("30636", "15272", "value", "");
INSERT INTO `wp_postmeta` VALUES("30637", "15272", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30638", "15272", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30639", "15272", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30640", "15272", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30641", "15272", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30642", "15272", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30643", "15272", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30644", "15272", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30645", "15272", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30646", "15272", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30647", "15272", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30648", "15272", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30649", "15272", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30650", "15272", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30651", "15272", "team_position", "Accounts");
INSERT INTO `wp_postmeta` VALUES("30652", "15272", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30653", "15272", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30654", "15272", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30655", "15272", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30656", "15272", "team_dribbble", "#");
INSERT INTO `wp_postmeta` VALUES("30657", "15272", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30658", "15272", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30659", "15272", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("30660", "15272", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("30661", "15272", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30662", "15272", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30663", "15272", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30664", "15272", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30665", "15272", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30666", "15272", "team_instagram", "#");
INSERT INTO `wp_postmeta` VALUES("30667", "15272", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30668", "15272", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30669", "15272", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30670", "15272", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30671", "15272", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30672", "15272", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30673", "15272", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30674", "15272", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30675", "15272", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30676", "15272", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30677", "15272", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30678", "15272", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30679", "15272", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30680", "15272", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30681", "15272", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30682", "15272", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30683", "15272", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30684", "15272", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30685", "15272", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30686", "15272", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30687", "15272", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30688", "15272", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30689", "15272", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30690", "15272", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30691", "15272", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30692", "15272", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30693", "15272", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30694", "15272", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30695", "15272", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30696", "15272", "_edit_lock", "1453130742:1");
INSERT INTO `wp_postmeta` VALUES("30697", "15273", "_thumbnail_id", "15260");
INSERT INTO `wp_postmeta` VALUES("30698", "15273", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30699", "15273", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30700", "15273", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30701", "15273", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30702", "15273", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30703", "15273", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30704", "15273", "price", "");
INSERT INTO `wp_postmeta` VALUES("30705", "15273", "value", "");
INSERT INTO `wp_postmeta` VALUES("30706", "15273", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30707", "15273", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30708", "15273", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30709", "15273", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30710", "15273", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30711", "15273", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30712", "15273", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30713", "15273", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30714", "15273", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30715", "15273", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30716", "15273", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30717", "15273", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30718", "15273", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30719", "15273", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30720", "15273", "team_position", "Account Manager");
INSERT INTO `wp_postmeta` VALUES("30721", "15273", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30722", "15273", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30723", "15273", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30724", "15273", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30725", "15273", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("30726", "15273", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30727", "15273", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30728", "15273", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("30729", "15273", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("30730", "15273", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30731", "15273", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30732", "15273", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30733", "15273", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30734", "15273", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30735", "15273", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30736", "15273", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30737", "15273", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30738", "15273", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30739", "15273", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30740", "15273", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30741", "15273", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30742", "15273", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30743", "15273", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30744", "15273", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30745", "15273", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30746", "15273", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30747", "15273", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30748", "15273", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30749", "15273", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30750", "15273", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30751", "15273", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30752", "15273", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30753", "15273", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30754", "15273", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30755", "15273", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30756", "15273", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30757", "15273", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30758", "15273", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30759", "15273", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30760", "15273", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30761", "15273", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30762", "15273", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30763", "15273", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30764", "15273", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30765", "15273", "_edit_lock", "1453130741:1");
INSERT INTO `wp_postmeta` VALUES("30766", "15274", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("30767", "15274", "_edit_lock", "1453130743:1");
INSERT INTO `wp_postmeta` VALUES("30768", "15274", "_thumbnail_id", "15259");
INSERT INTO `wp_postmeta` VALUES("30769", "15274", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("30770", "15274", "cs_post_subtitle", "");
INSERT INTO `wp_postmeta` VALUES("30771", "15274", "cs_portfolio_category_details", "");
INSERT INTO `wp_postmeta` VALUES("30772", "15274", "cs_portfolio_category_layout", "style2");
INSERT INTO `wp_postmeta` VALUES("30773", "15274", "cs_team_layout_color", "style-light");
INSERT INTO `wp_postmeta` VALUES("30774", "15274", "price", "");
INSERT INTO `wp_postmeta` VALUES("30775", "15274", "value", "");
INSERT INTO `wp_postmeta` VALUES("30776", "15274", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("30777", "15274", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("30778", "15274", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("30779", "15274", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("30780", "15274", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("30781", "15274", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("30782", "15274", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("30783", "15274", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("30784", "15274", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("30785", "15274", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("30786", "15274", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("30787", "15274", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("30788", "15274", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("30789", "15274", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("30790", "15274", "team_position", "Account Manager");
INSERT INTO `wp_postmeta` VALUES("30791", "15274", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("30792", "15274", "team_facebook", "#");
INSERT INTO `wp_postmeta` VALUES("30793", "15274", "team_twitter", "#");
INSERT INTO `wp_postmeta` VALUES("30794", "15274", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("30795", "15274", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("30796", "15274", "team_youtube", "#");
INSERT INTO `wp_postmeta` VALUES("30797", "15274", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("30798", "15274", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("30799", "15274", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("30800", "15274", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30801", "15274", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("30802", "15274", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("30803", "15274", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("30804", "15274", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("30805", "15274", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("30806", "15274", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("30807", "15274", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("30808", "15274", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("30809", "15274", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("30810", "15274", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("30811", "15274", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("30812", "15274", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("30813", "15274", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("30814", "15274", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("30815", "15274", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("30816", "15274", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30817", "15274", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30818", "15274", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30819", "15274", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30820", "15274", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("30821", "15274", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("30822", "15274", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("30823", "15274", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("30824", "15274", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("30825", "15274", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("30826", "15274", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("30827", "15274", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("30828", "15274", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("30829", "15274", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("30830", "15274", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("30831", "15274", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("30832", "15274", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("30833", "15274", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("30834", "15274", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("30849", "3503", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("30850", "3503", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("30851", "3503", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("30852", "3503", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("30853", "3503", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("30854", "3503", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("30855", "3503", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("30856", "3503", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("30857", "3503", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("48539", "17406", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:25:\"2015/01/portfolio-122.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"portfolio-122-150x150.jpg\";s:5:\"width\";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:\"portfolio-122-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"portfolio-122-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"portfolio-122-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"portfolio-122-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"portfolio-122-600x525.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48538", "17406", "_wp_attached_file", "2015/01/portfolio-122.jpg");
INSERT INTO `wp_postmeta` VALUES("31319", "15431", "_wp_attached_file", "2015/06/financeparallax.jpg");
INSERT INTO `wp_postmeta` VALUES("31320", "15431", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:870;s:4:\"file\";s:27:\"2015/06/financeparallax.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"financeparallax-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"financeparallax-600x373.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"financeparallax-1170x727.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:27:\"financeparallax-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:27:\"financeparallax-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:27:\"financeparallax-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:27:\"financeparallax-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:27:\"financeparallax-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:27:\"financeparallax-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:27:\"financeparallax-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"financeparallax-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("31541", "15464", "_wp_attached_file", "2015/06/doubleexp.jpg");
INSERT INTO `wp_postmeta` VALUES("31542", "15464", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1405;s:6:\"height\";i:900;s:4:\"file\";s:21:\"2015/06/doubleexp.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"doubleexp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"doubleexp-600x384.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"doubleexp-1170x749.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:749;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"doubleexp-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"doubleexp-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"doubleexp-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"doubleexp-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"doubleexp-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"doubleexp-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"doubleexp-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"doubleexp-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("32071", "14279", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("32072", "14279", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("32073", "14279", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("32074", "14279", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("32075", "14279", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("32076", "14279", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("32077", "14279", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("32078", "14279", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("32079", "14279", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("32080", "14279", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("32081", "14279", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("32082", "14279", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("32083", "14279", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("32084", "14279", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("32085", "14279", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("32086", "14279", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("32087", "14279", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("32088", "14279", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("32089", "14279", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("32090", "14279", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("32120", "14498", "_wpb_shortcodes_custom_css", ".vc_custom_1435327754114{background-color: #f5f5f5 !important;}.vc_custom_1435327765869{background-color: #f5f5f5 !important;}.vc_custom_1435327780727{background-color: #f5f5f5 !important;}.vc_custom_1435327793408{background-color: #f5f5f5 !important;}");
INSERT INTO `wp_postmeta` VALUES("32121", "14498", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("32122", "14498", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("32123", "14498", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("32124", "14498", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("32125", "14498", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("32126", "14498", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("48537", "17405", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:25:\"2015/01/portfolio-121.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"portfolio-121-150x150.jpg\";s:5:\"width\";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:\"portfolio-121-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"portfolio-121-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"portfolio-121-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"portfolio-121-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"portfolio-121-600x525.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48536", "17405", "_wp_attached_file", "2015/01/portfolio-121.jpg");
INSERT INTO `wp_postmeta` VALUES("48535", "17404", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:24:\"2015/01/portfolio-12.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-12-150x150.jpg\";s:5:\"width\";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:\"portfolio-12-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:24:\"portfolio-12-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-12-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"portfolio-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"portfolio-12-600x525.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52772", "1031", "_thumbnail_id", "17705");
INSERT INTO `wp_postmeta` VALUES("52771", "17705", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:23:\"2015/01/portfolio-6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"portfolio-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"portfolio-6-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:23:\"portfolio-6-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48531", "17402", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:19:\"2015/11/slide-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slide-1-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"slide-1-1170x457.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:19:\"slide-1-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"slide-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"slide-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"slide-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48530", "17402", "_wp_attached_file", "2015/11/slide-1.jpg");
INSERT INTO `wp_postmeta` VALUES("33796", "15622", "_wp_attached_file", "2015/01/page-title-exo_02.jpg");
INSERT INTO `wp_postmeta` VALUES("33797", "15622", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1455;s:6:\"height\";i:555;s:4:\"file\";s:29:\"2015/01/page-title-exo_02.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"page-title-exo_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:29:\"page-title-exo_02-600x229.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:229;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"page-title-exo_02-1170x446.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:29:\"page-title-exo_02-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:27:\"page-title-exo_02-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52644", "17682", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("52643", "17682", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("33833", "239", "cs_portfolio_conclusion", "<h4 style=\"margin-bottom: 50px;\">Conclusion</h4>\r\n<p style=\"font-weight: bold;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.");
INSERT INTO `wp_postmeta` VALUES("33834", "239", "cs_portfolio_conclusion_image", "14470");
INSERT INTO `wp_postmeta` VALUES("33838", "239", "cs_portfolio_layout_color", "style1");
INSERT INTO `wp_postmeta` VALUES("33839", "238", "cs_portfolio_layout_color", "style2");
INSERT INTO `wp_postmeta` VALUES("33840", "238", "cs_portfolio_conclusion_image", "");
INSERT INTO `wp_postmeta` VALUES("33841", "238", "cs_portfolio_conclusion", "");
INSERT INTO `wp_postmeta` VALUES("33866", "245", "cs_portfolio_layout_color", "style2");
INSERT INTO `wp_postmeta` VALUES("33867", "245", "cs_portfolio_conclusion_image", "14470");
INSERT INTO `wp_postmeta` VALUES("33868", "245", "cs_portfolio_conclusion", "<h4 style=\"margin-bottom: 50px;\">Conclusion</h4>\r\n<p style=\"font-weight: bold;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.");
INSERT INTO `wp_postmeta` VALUES("33896", "15715", "_wp_attached_file", "2015/06/square1.jpg");
INSERT INTO `wp_postmeta` VALUES("33897", "15715", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:430;s:6:\"height\";i:286;s:4:\"file\";s:19:\"2015/06/square1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"square1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"square1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"square1-430x272.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"square1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"square1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"square1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33898", "15716", "_wp_attached_file", "2015/06/square3.jpg");
INSERT INTO `wp_postmeta` VALUES("33899", "15716", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:430;s:6:\"height\";i:286;s:4:\"file\";s:19:\"2015/06/square3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"square3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"square3-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"square3-430x272.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"square3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"square3-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"square3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33900", "15717", "_wp_attached_file", "2015/06/square2.jpg");
INSERT INTO `wp_postmeta` VALUES("33901", "15717", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:430;s:6:\"height\";i:286;s:4:\"file\";s:19:\"2015/06/square2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"square2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:19:\"square2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:19:\"square2-430x272.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:19:\"square2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:19:\"square2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:17:\"square2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33925", "15727", "_wp_attached_file", "2015/06/yellgirl2.jpg");
INSERT INTO `wp_postmeta` VALUES("33926", "15727", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:516;s:6:\"height\";i:485;s:4:\"file\";s:21:\"2015/06/yellgirl2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"yellgirl2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:21:\"yellgirl2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:21:\"yellgirl2-516x272.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:21:\"yellgirl2-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:21:\"yellgirl2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:21:\"yellgirl2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:21:\"yellgirl2-516x400.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:21:\"yellgirl2-516x441.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:19:\"yellgirl2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33923", "15724", "_wp_attached_file", "2015/06/yellowgirl.jpg");
INSERT INTO `wp_postmeta` VALUES("33924", "15724", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:396;s:6:\"height\";i:485;s:4:\"file\";s:22:\"2015/06/yellowgirl.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"yellowgirl-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:22:\"yellowgirl-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:22:\"yellowgirl-396x272.jpg\";s:5:\"width\";i:396;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:22:\"yellowgirl-396x295.jpg\";s:5:\"width\";i:396;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:22:\"yellowgirl-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:22:\"yellowgirl-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:22:\"yellowgirl-396x400.jpg\";s:5:\"width\";i:396;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:22:\"yellowgirl-396x441.jpg\";s:5:\"width\";i:396;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:20:\"yellowgirl-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33927", "15730", "_wp_attached_file", "2015/06/hands.jpg");
INSERT INTO `wp_postmeta` VALUES("33928", "15730", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:516;s:6:\"height\";i:485;s:4:\"file\";s:17:\"2015/06/hands.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"hands-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:17:\"hands-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:17:\"hands-516x272.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:17:\"hands-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:17:\"hands-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:17:\"hands-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:17:\"hands-516x400.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:17:\"hands-516x441.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:15:\"hands-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33929", "15731", "_wp_attached_file", "2015/06/city.jpg");
INSERT INTO `wp_postmeta` VALUES("33930", "15731", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:516;s:6:\"height\";i:485;s:4:\"file\";s:16:\"2015/06/city.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"city-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:16:\"city-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:16:\"city-516x272.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:16:\"city-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:16:\"city-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:16:\"city-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:16:\"city-516x400.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:16:\"city-516x441.jpg\";s:5:\"width\";i:516;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:14:\"city-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("33980", "1482", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("33981", "1482", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("33982", "1482", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("33983", "1482", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("33984", "1482", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("33985", "1482", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("33986", "1482", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("33987", "1482", "cs_header_logo_image", "15049");
INSERT INTO `wp_postmeta` VALUES("33988", "1482", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("33989", "1482", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("33990", "1482", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("33991", "1482", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("33992", "1482", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("33993", "1482", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("33994", "1482", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("33995", "1482", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("33996", "1482", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("33997", "1482", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("33998", "1482", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("33999", "1482", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("34000", "1482", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("34001", "1482", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("34002", "1482", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("34003", "1482", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("34004", "1482", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("34005", "1482", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("34006", "1482", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("34007", "1482", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("34008", "1482", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("34009", "1482", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("34010", "1482", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("34011", "1482", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("34012", "1482", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("34013", "1482", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("34014", "1482", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34015", "1482", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34016", "1482", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34017", "1482", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("34018", "1482", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("34019", "1482", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("34020", "1482", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("34021", "1482", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("34022", "1482", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("34023", "1482", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34024", "1482", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("52113", "17605", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("52112", "17605", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("52111", "17605", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("52110", "17605", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("52109", "17605", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("52108", "17605", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("52107", "17605", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("52106", "17605", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("52105", "17605", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("52104", "17605", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("52103", "17605", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("52102", "17605", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52101", "17605", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("52100", "17605", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("52099", "17605", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("52098", "17605", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("52096", "17605", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("52097", "17605", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("52094", "17605", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("52095", "17605", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("52093", "17605", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("52063", "17605", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("52092", "17605", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("52091", "17605", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52090", "17605", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("52089", "17605", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52088", "17605", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52087", "17605", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("52086", "17605", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("52065", "17605", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("52066", "17605", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("52067", "17605", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("52068", "17605", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("52069", "17605", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52070", "17605", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("52071", "17605", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52072", "17605", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("52073", "17605", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("52074", "17605", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("52075", "17605", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("52076", "17605", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("52077", "17605", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("52078", "17605", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("52079", "17605", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("52080", "17605", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("52081", "17605", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("52082", "17605", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("52083", "17605", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("52084", "17605", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("52085", "17605", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("34274", "3201", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("34275", "3201", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("34276", "3201", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("34277", "3201", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("34278", "3201", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("34279", "3201", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("34280", "3201", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34281", "3201", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34282", "3201", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34283", "3201", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("34284", "3201", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("34505", "15786", "_wp_attached_file", "2015/06/services1light.jpg");
INSERT INTO `wp_postmeta` VALUES("34506", "15786", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:933;s:4:\"file\";s:26:\"2015/06/services1light.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"services1light-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"services1light-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"services1light-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:26:\"services1light-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:26:\"services1light-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:26:\"services1light-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:26:\"services1light-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:26:\"services1light-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:26:\"services1light-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:26:\"services1light-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:24:\"services1light-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("34515", "9135", "_edit_lock", "1435655769:1");
INSERT INTO `wp_postmeta` VALUES("34516", "9135", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34517", "9135", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34518", "9135", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34519", "9135", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34520", "9135", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34521", "9135", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34522", "9135", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34523", "9135", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34524", "9135", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34525", "9135", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34526", "9135", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34527", "9135", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34528", "9135", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34529", "9135", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34530", "9135", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34531", "9135", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34532", "9135", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34533", "9135", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34534", "9135", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34535", "9135", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34536", "9135", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34537", "9135", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34538", "9135", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34539", "9135", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34540", "9135", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34541", "9135", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34542", "9135", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34543", "9135", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34544", "9135", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34545", "9135", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34546", "9135", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34547", "9135", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34548", "9135", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34549", "9135", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("34550", "9136", "_edit_lock", "1435655801:1");
INSERT INTO `wp_postmeta` VALUES("34551", "9136", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34552", "9136", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34553", "9136", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34554", "9136", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34555", "9136", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34556", "9136", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34557", "9136", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34558", "9136", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34559", "9136", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34560", "9136", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34561", "9136", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34562", "9136", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34563", "9136", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34564", "9136", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34565", "9136", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34566", "9136", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34567", "9136", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34568", "9136", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34569", "9136", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34570", "9136", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34571", "9136", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34572", "9136", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34573", "9136", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34574", "9136", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34575", "9136", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34576", "9136", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34577", "9136", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34578", "9136", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34579", "9136", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34580", "9136", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34581", "9136", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34582", "9136", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34583", "9136", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34584", "9136", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("34585", "9137", "_edit_lock", "1435655827:1");
INSERT INTO `wp_postmeta` VALUES("34586", "9137", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34587", "9137", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34588", "9137", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34589", "9137", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34590", "9137", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34591", "9137", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34592", "9137", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34593", "9137", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34594", "9137", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34595", "9137", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34596", "9137", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34597", "9137", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34598", "9137", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34599", "9137", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34600", "9137", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34601", "9137", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34602", "9137", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34603", "9137", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34604", "9137", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34605", "9137", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34606", "9137", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34607", "9137", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34608", "9137", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34609", "9137", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34610", "9137", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34611", "9137", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34612", "9137", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34613", "9137", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34614", "9137", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34615", "9137", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34616", "9137", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34617", "9137", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34618", "9137", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34619", "9137", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("34620", "9138", "_edit_lock", "1435655928:1");
INSERT INTO `wp_postmeta` VALUES("34621", "9138", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34622", "9138", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34623", "9138", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34624", "9138", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34625", "9138", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34626", "9138", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34627", "9138", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34628", "9138", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34629", "9138", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34630", "9138", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34631", "9138", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34632", "9138", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34633", "9138", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34634", "9138", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34635", "9138", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34636", "9138", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34637", "9138", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34638", "9138", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34639", "9138", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34640", "9138", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34641", "9138", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34642", "9138", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34643", "9138", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34644", "9138", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34645", "9138", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34646", "9138", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34647", "9138", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34648", "9138", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34649", "9138", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34650", "9138", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34651", "9138", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34652", "9138", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34653", "9138", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34654", "9138", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("34655", "3629", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("34656", "3629", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("34657", "3629", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("34658", "3629", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("34659", "3629", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("34660", "3629", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("34661", "3629", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("34662", "3629", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("34663", "3629", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("34664", "3629", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("34665", "3629", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("34666", "3629", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("34667", "3629", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("34668", "3629", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("34669", "3629", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("34670", "3629", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("34671", "3629", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("34672", "3629", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34673", "3629", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34674", "3629", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("34675", "3629", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("34676", "3629", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("34677", "9166", "_edit_lock", "1449842876:1");
INSERT INTO `wp_postmeta` VALUES("34678", "15816", "_wp_attached_file", "2014/12/promo2.jpg");
INSERT INTO `wp_postmeta` VALUES("34679", "15816", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:250;s:4:\"file\";s:18:\"2014/12/promo2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"promo2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"promo2-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"promo2-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"promo2-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"promo2-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("34680", "15817", "_wp_attached_file", "2014/12/promo1.jpg");
INSERT INTO `wp_postmeta` VALUES("34681", "15817", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:250;s:4:\"file\";s:18:\"2014/12/promo1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"promo1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"promo1-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"promo1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"promo1-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"promo1-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("34682", "15818", "_wp_attached_file", "2014/12/promo3.jpg");
INSERT INTO `wp_postmeta` VALUES("34683", "15818", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:370;s:6:\"height\";i:250;s:4:\"file\";s:18:\"2014/12/promo3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"promo3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"promo3-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"promo3-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"promo3-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"promo3-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("34684", "9166", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34685", "9166", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34686", "9166", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34687", "9166", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34688", "9166", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34689", "9166", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34690", "9166", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34691", "9166", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34692", "9166", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34693", "9166", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34694", "9166", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34695", "9166", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34696", "9166", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34697", "9166", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34698", "9166", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34699", "9166", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34700", "9166", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34701", "9166", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34702", "9166", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34703", "9166", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34704", "9166", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34705", "9166", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34706", "9166", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34707", "9166", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34708", "9166", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34709", "9166", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34710", "9166", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34711", "9166", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34712", "9166", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34713", "9166", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34714", "9166", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34715", "9166", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34716", "9166", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34717", "9166", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("34718", "9164", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34719", "9164", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34720", "9164", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34721", "9164", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34722", "9164", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34723", "9164", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34724", "9164", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34725", "9164", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34726", "9164", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34727", "9164", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34728", "9164", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34729", "9164", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34730", "9164", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34731", "9164", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34732", "9164", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34733", "9164", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34734", "9164", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34735", "9164", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34736", "9164", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34737", "9164", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34738", "9164", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34739", "9164", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34740", "9164", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34741", "9164", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34742", "9164", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34743", "9164", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34744", "9164", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34745", "9164", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34746", "9164", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34747", "9164", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34748", "9164", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34749", "9164", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34750", "9164", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34751", "9164", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("34752", "9163", "_edit_lock", "1449845025:1");
INSERT INTO `wp_postmeta` VALUES("34753", "9163", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("34754", "9163", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("34755", "9163", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("34756", "9163", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34757", "9163", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("34758", "9163", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("34759", "9163", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("34760", "9163", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("34761", "9163", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("34762", "9163", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("34763", "9163", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("34764", "9163", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("34765", "9163", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("34766", "9163", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("34767", "9163", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("34768", "9163", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34769", "9163", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34770", "9163", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34771", "9163", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34772", "9163", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("34773", "9163", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("34774", "9163", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("34775", "9163", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("34776", "9163", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("34777", "9163", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("34778", "9163", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("34779", "9163", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("34780", "9163", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("34781", "9163", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("34782", "9163", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("34783", "9163", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("34784", "9163", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("34785", "9163", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("34786", "9163", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("35227", "9039", "_edit_lock", "1449842350:1");
INSERT INTO `wp_postmeta` VALUES("35351", "1482", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("49232", "17472", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("49231", "17472", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("49230", "17472", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("35352", "3503", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("35353", "3503", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("35645", "15985", "_wp_attached_file", "2015/06/Coverr-Highrise.jpg");
INSERT INTO `wp_postmeta` VALUES("35646", "15985", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2015/06/Coverr-Highrise.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Coverr-Highrise-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:27:\"Coverr-Highrise-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:25:\"Coverr-Highrise-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("36093", "16023", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("36094", "16023", "_edit_lock", "1451488475:1");
INSERT INTO `wp_postmeta` VALUES("36095", "16023", "_wp_page_template", "blog-classic-style1.php");
INSERT INTO `wp_postmeta` VALUES("36096", "16023", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("36097", "16023", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("36098", "16023", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("36099", "16023", "cs_page_layout", "right-fixed");
INSERT INTO `wp_postmeta` VALUES("36100", "16023", "cs_sidebar_left", "cshero-widget-right");
INSERT INTO `wp_postmeta` VALUES("36101", "16023", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("36102", "16023", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("36103", "16023", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("36104", "16023", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("36105", "16023", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("36106", "16023", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("36107", "16023", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("36108", "16023", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("36109", "16023", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("36110", "16023", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("36111", "16023", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("36112", "16023", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("36113", "16023", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("36114", "16023", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("36115", "16023", "cs_body_custom_class", "home-light");
INSERT INTO `wp_postmeta` VALUES("36116", "16023", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("36117", "16023", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("36118", "16023", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("36119", "16023", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("36120", "16023", "cs_header_setting", "0");
INSERT INTO `wp_postmeta` VALUES("36121", "16023", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("36122", "16023", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("36123", "16023", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("36124", "16023", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("36125", "16023", "cs_header_logo_image", "15049");
INSERT INTO `wp_postmeta` VALUES("36126", "16023", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("36127", "16023", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("36128", "16023", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("36129", "16023", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("36130", "16023", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("36131", "16023", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("36132", "16023", "cs_header_bg_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36133", "16023", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("36134", "16023", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("36135", "16023", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("36136", "16023", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("36137", "16023", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("36138", "16023", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("36139", "16023", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("36140", "16023", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("36141", "16023", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("36142", "16023", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("36143", "16023", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("36144", "16023", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("36145", "16023", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("36146", "16023", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("36147", "16023", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("36148", "16023", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("36149", "16023", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("36150", "16023", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("36151", "16023", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("36152", "16023", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("36153", "16023", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("36154", "16023", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("36155", "16023", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("36156", "16023", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("36157", "16023", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("36158", "16023", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("36159", "16023", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("36160", "16023", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("36161", "16023", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("36162", "16023", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("36163", "16023", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("36164", "16023", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("36165", "16023", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("36166", "16023", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("36167", "16023", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("36168", "16023", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("36169", "16023", "cs_page_title_setting", "0");
INSERT INTO `wp_postmeta` VALUES("36170", "16023", "cs_page_title_enable", "1");
INSERT INTO `wp_postmeta` VALUES("36171", "16023", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("36172", "16023", "cs_title_bar_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36173", "16023", "cs_page_title_custom_size", "44px");
INSERT INTO `wp_postmeta` VALUES("36174", "16023", "cs_page_title_custom_text", ".BLOG RIGHT SIDEBAR");
INSERT INTO `wp_postmeta` VALUES("36175", "16023", "cs_page_title_custom_subheader_text", ".our latest new and events");
INSERT INTO `wp_postmeta` VALUES("36176", "16023", "cs_page_title_custom_subheader_text_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36177", "16023", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("36178", "16023", "cs_page_title_bg", "15967");
INSERT INTO `wp_postmeta` VALUES("36179", "16023", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("36180", "16023", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("36181", "16023", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("36182", "16023", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("36183", "16023", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("36184", "16023", "cs_page_title_bg_parallax", "1");
INSERT INTO `wp_postmeta` VALUES("36185", "16023", "cs_page_title_padding", "120px 0 120px 0");
INSERT INTO `wp_postmeta` VALUES("36186", "16023", "cs_page_title_margin", "0");
INSERT INTO `wp_postmeta` VALUES("36187", "16023", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("36188", "16023", "cs_breadcrumb", "0");
INSERT INTO `wp_postmeta` VALUES("36189", "16023", "cs_breadcrumb_text_align", "center");
INSERT INTO `wp_postmeta` VALUES("36190", "16023", "cs_breadcrumb_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36191", "16023", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("36192", "16023", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("36193", "16023", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("36194", "16023", "cs_footer_top_color_link", "#13151c");
INSERT INTO `wp_postmeta` VALUES("36195", "16023", "cs_footer_top_color_link_hover", "#01abce");
INSERT INTO `wp_postmeta` VALUES("36196", "16023", "cs_footer_top_heading_color", "#13151c");
INSERT INTO `wp_postmeta` VALUES("36197", "16023", "cs_footer_top_bg_color", "rgba(245, 245, 245, 1)");
INSERT INTO `wp_postmeta` VALUES("36198", "16023", "cs_footer_top_color", "#13151c");
INSERT INTO `wp_postmeta` VALUES("36199", "16023", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("36200", "16023", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("36201", "16023", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("36202", "16023", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("36203", "16023", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("36204", "16023", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("36205", "16023", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("36206", "16023", "cs_bottom_top_image_arrow_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36207", "16023", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("36208", "16023", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("36209", "16023", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("36210", "16023", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("36211", "16023", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("36212", "16023", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("36213", "16023", "cs_footer_bottom_page_bg_color", "rgba(184, 184, 184, 1)");
INSERT INTO `wp_postmeta` VALUES("36214", "16023", "cs_footer_bottom_page_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36215", "16023", "cs_footer_bottom_page_link_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36216", "16023", "cs_footer_bottom_page_link_color_hover", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("36217", "16023", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("36218", "16023", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("36219", "16023", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("36220", "16023", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("36221", "16023", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("36222", "16023", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("36223", "16023", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("36224", "16023", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("36225", "16023", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("36226", "16023", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("36227", "16023", "price", "");
INSERT INTO `wp_postmeta` VALUES("36228", "16023", "value", "");
INSERT INTO `wp_postmeta` VALUES("36229", "16023", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("36230", "16023", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("36231", "16023", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("36232", "16023", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("36233", "16023", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("36234", "16023", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("36235", "16023", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("36236", "16023", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("36237", "16023", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("36238", "16023", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("36239", "16023", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("36240", "16023", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("36241", "16023", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("36242", "16023", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("36243", "16023", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("36244", "16023", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("36245", "16023", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("36246", "16023", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("36247", "16023", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("36248", "16023", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("36249", "16023", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("36250", "16023", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("36251", "16023", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("36252", "16023", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("36253", "16023", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("36254", "16023", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("36255", "16023", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("36256", "16023", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("36257", "16023", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("36258", "16023", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("36259", "16023", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("36260", "16023", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("36261", "16023", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("36262", "16023", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("36263", "16023", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("36264", "16023", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("36265", "16023", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("36266", "16023", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("36267", "16023", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("36268", "16023", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("36269", "16023", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("36270", "16023", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("36271", "16023", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("36272", "16023", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("36273", "16023", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("36274", "16023", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("36275", "16023", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("36276", "16023", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("36277", "16023", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("36278", "16023", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("36279", "16023", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("36280", "16023", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("36281", "16023", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("36282", "16023", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("36283", "16023", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("36284", "16023", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("36285", "16023", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("36286", "16023", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("36287", "16023", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("36339", "16023", "cs_page_title_custom_subheader_size", "18px");
INSERT INTO `wp_postmeta` VALUES("36991", "16086", "_wp_attached_file", "2015/06/corp31.jpg");
INSERT INTO `wp_postmeta` VALUES("36992", "16086", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:930;s:4:\"file\";s:18:\"2015/06/corp31.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"corp31-150x150.jpg\";s:5:\"width\";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:\"corp31-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"corp31-1170x777.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"related-img\";a:4:{s:4:\"file\";s:18:\"corp31-180x138.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-one\";a:4:{s:4:\"file\";s:18:\"corp31-540x272.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"portfolio-two\";a:4:{s:4:\"file\";s:18:\"corp31-460x295.jpg\";s:5:\"width\";i:460;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio-three\";a:4:{s:4:\"file\";s:18:\"corp31-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-four\";a:4:{s:4:\"file\";s:18:\"corp31-220x161.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"portfolio-full\";a:4:{s:4:\"file\";s:18:\"corp31-940x400.jpg\";s:5:\"width\";i:940;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"recent-posts\";a:4:{s:4:\"file\";s:18:\"corp31-700x441.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:441;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"recent-works-thumbnail\";a:4:{s:4:\"file\";s:16:\"corp31-66x66.jpg\";s:5:\"width\";i:66;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("37072", "666", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37073", "666", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37074", "666", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("37075", "666", "cs_post_custom_setting", "");
INSERT INTO `wp_postmeta` VALUES("37076", "666", "cs_post_enable_title", "");
INSERT INTO `wp_postmeta` VALUES("37077", "666", "cs_post_enable_thumbnail", "");
INSERT INTO `wp_postmeta` VALUES("37078", "666", "cs_post_page_title_custom", "");
INSERT INTO `wp_postmeta` VALUES("37079", "666", "cs_post_page_title", "");
INSERT INTO `wp_postmeta` VALUES("37080", "666", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("37081", "666", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("37082", "666", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("37083", "666", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("37084", "666", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("37085", "666", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("37086", "666", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("37087", "666", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("37088", "666", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("37089", "666", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("37090", "666", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("37091", "666", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("37092", "666", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("37093", "666", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("37094", "666", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("37095", "666", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("37096", "666", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("37097", "666", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("37098", "666", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("37099", "666", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("37100", "666", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("37101", "666", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("37102", "666", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("37103", "666", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("37104", "666", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("37105", "666", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("37106", "666", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("37107", "666", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("37108", "666", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("37109", "666", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("37110", "666", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("37111", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37112", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37113", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37114", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37121", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37122", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37124", "1482", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("52456", "52", "_thumbnail_id", "17641");
INSERT INTO `wp_postmeta` VALUES("52455", "17641", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-8.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-8-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-8-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52453", "51", "_thumbnail_id", "17640");
INSERT INTO `wp_postmeta` VALUES("52452", "17640", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-7.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-7-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-7-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52450", "50", "_thumbnail_id", "17638");
INSERT INTO `wp_postmeta` VALUES("52449", "17638", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-6.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-6-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-6-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52447", "49", "_thumbnail_id", "17637");
INSERT INTO `wp_postmeta` VALUES("52446", "17637", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-5.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-5-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-5-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52444", "48", "_thumbnail_id", "17636");
INSERT INTO `wp_postmeta` VALUES("52443", "17636", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-4-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-4-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52441", "47", "_thumbnail_id", "17635");
INSERT INTO `wp_postmeta` VALUES("52439", "17635", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-3-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-3-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52437", "46", "_thumbnail_id", "17634");
INSERT INTO `wp_postmeta` VALUES("52436", "17634", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-2-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-2-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52434", "35", "_thumbnail_id", "17633");
INSERT INTO `wp_postmeta` VALUES("52433", "17633", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2014/12/client-logo-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"client-logo-1-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"client-logo-1-180x158.png\";s:5:\"width\";i:180;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("50860", "17516", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("50859", "17516", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("37575", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37576", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37577", "657", "cs_post_title_padding", "140px 0");
INSERT INTO `wp_postmeta` VALUES("37578", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37579", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37580", "657", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("37581", "657", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("37802", "3051", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("37803", "3051", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("37804", "3051", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("37805", "3051", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("37806", "3051", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("50858", "17516", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50857", "17516", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50856", "17516", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("50855", "17516", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("50854", "17516", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50853", "17516", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50851", "17516", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("50852", "17516", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("50850", "17516", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("50849", "17516", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("50848", "17516", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("50847", "17516", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("50864", "17516", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50845", "17516", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("50844", "17516", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("50843", "17516", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("50842", "17516", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("50841", "17516", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("50840", "17516", "_menu_item_object_id", "17496");
INSERT INTO `wp_postmeta` VALUES("50839", "17516", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("50838", "17516", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("50837", "17515", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("50836", "17515", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("50835", "17515", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50833", "17515", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("50834", "17515", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50832", "17515", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("50831", "17515", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50830", "17515", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50829", "17515", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("50828", "17515", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("50827", "17515", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("50826", "17515", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("50825", "17515", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("50824", "17515", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("50863", "17515", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52064", "17605", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("52050", "17605", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("52062", "17605", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("52061", "17605", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("52060", "17605", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("52059", "17605", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("52058", "17605", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("52057", "17605", "cs_page_title_setting", "1");
INSERT INTO `wp_postmeta` VALUES("52056", "17605", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("52055", "17605", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("52054", "17605", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("52053", "17605", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("52052", "17605", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("52051", "17605", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48128", "17273", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:163;s:6:\"height\";i:40;s:4:\"file\";s:16:\"2015/11/logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x40.png\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:15:\"logo-115x40.png\";s:5:\"width\";i:115;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("50822", "17515", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("50821", "17515", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("50820", "17515", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("50819", "17515", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("50818", "17515", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("50817", "17515", "_menu_item_object_id", "17500");
INSERT INTO `wp_postmeta` VALUES("50816", "17515", "_menu_item_menu_item_parent", "17569");
INSERT INTO `wp_postmeta` VALUES("50815", "17515", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("50814", "17514", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("50813", "17514", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("50812", "17514", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50811", "17514", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50810", "17514", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("50809", "17514", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("50808", "17514", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50807", "17514", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50806", "17514", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("50805", "17514", "_menu_item_group", "group");
INSERT INTO `wp_postmeta` VALUES("48127", "17273", "_wp_attached_file", "2015/11/logo.png");
INSERT INTO `wp_postmeta` VALUES("48329", "17274", "_wpb_shortcodes_custom_css", ".vc_custom_1448537228856{padding-bottom: 50px !important;}.vc_custom_1448537228856{padding-bottom: 50px !important;}.vc_custom_1470159169783{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}.vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}.vc_custom_1470161701188{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}.vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}.vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}.vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}.vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}.vc_custom_1451232895532{padding-bottom: 40px !important;}.vc_custom_1451232543647{padding-bottom: 30px !important;}.vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1451232081002{padding-bottom: 40px !important;}.vc_custom_1451232599335{padding-bottom: 60px !important;}.vc_custom_1449265044803{padding-bottom: 40px !important;}");
INSERT INTO `wp_postmeta` VALUES("52049", "17605", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("52034", "17605", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("52033", "17605", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("52032", "17605", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("52031", "17605", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("52030", "17605", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("52029", "17605", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("52028", "17605", "cs_sticky_header_bg_color", "rgba(255, 255, 255, 1)");
INSERT INTO `wp_postmeta` VALUES("52027", "17605", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("52026", "17605", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("52025", "17605", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("52024", "17605", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("52022", "17605", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("52023", "17605", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("52021", "17605", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("52020", "17605", "cs_header_bg_color", "rgba(255, 255, 255, 0)");
INSERT INTO `wp_postmeta` VALUES("52019", "17605", "cs_header_border_bottom_color", "rgba(255, 255, 255, 0.25)");
INSERT INTO `wp_postmeta` VALUES("52018", "17605", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("52016", "17605", "cs_header_border_bottom", "1");
INSERT INTO `wp_postmeta` VALUES("52017", "17605", "cs_header_border_bottom_style", "solid");
INSERT INTO `wp_postmeta` VALUES("52015", "17605", "cs_header_fixed_top", "1");
INSERT INTO `wp_postmeta` VALUES("52014", "17605", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("52013", "17605", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("52012", "17605", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("52011", "17605", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("52010", "17605", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("52009", "17605", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("52008", "17605", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("52007", "17605", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("52006", "17605", "cs_header_setting", "0");
INSERT INTO `wp_postmeta` VALUES("52005", "17605", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("52004", "17605", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("52003", "17605", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("52002", "17605", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("52001", "17605", "cs_body_custom_class", "header-trasparent");
INSERT INTO `wp_postmeta` VALUES("52000", "17605", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51999", "17605", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51998", "17605", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51996", "17605", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51997", "17605", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51995", "17605", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51994", "17605", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51993", "17605", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("51992", "17605", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51991", "17605", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("51990", "17605", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51989", "17605", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("51981", "17605", "_wpb_shortcodes_custom_css", ".vc_custom_1448537228856{padding-bottom: 50px !important;}.vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}.vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}.vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}.vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}.vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}.vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}.vc_custom_1450972607555{padding-bottom: 30px !important;}.vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1451316550172{padding-bottom: 30px !important;}.vc_custom_1449265044803{padding-bottom: 40px !important;}");
INSERT INTO `wp_postmeta` VALUES("51982", "17605", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("51983", "17605", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("51984", "17605", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("51985", "17605", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("51986", "17605", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("51987", "17605", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("51988", "17605", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("51979", "17605", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("51980", "17605", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51978", "17605", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("51977", "17605", "_edit_lock", "1470272579:1");
INSERT INTO `wp_postmeta` VALUES("51976", "17605", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("51771", "17601", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("51770", "17601", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("51769", "17601", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51768", "17601", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51767", "17601", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("51766", "17601", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("51765", "17601", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51764", "17601", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51763", "17601", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("51747", "17593", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("51725", "17593", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("51726", "17593", "_menu_item_menu_item_parent", "17470");
INSERT INTO `wp_postmeta` VALUES("51727", "17593", "_menu_item_object_id", "17534");
INSERT INTO `wp_postmeta` VALUES("51728", "17593", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("51729", "17593", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("51730", "17593", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("51731", "17593", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("51732", "17593", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("51748", "17593", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51734", "17593", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("51735", "17593", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("51736", "17593", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("51737", "17593", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("51738", "17593", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("51739", "17593", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("51740", "17593", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51741", "17593", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51742", "17593", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("51743", "17593", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("51744", "17593", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51745", "17593", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51723", "17569", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("51722", "17569", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("51721", "17569", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51720", "17569", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51719", "17569", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("51718", "17569", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("51717", "17569", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51716", "17569", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51715", "17569", "_menu_item_hide_link", "1");
INSERT INTO `wp_postmeta` VALUES("51714", "17569", "_menu_item_group", "group");
INSERT INTO `wp_postmeta` VALUES("51713", "17569", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("51712", "17569", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("51711", "17569", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("51710", "17569", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("51724", "17569", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51708", "17569", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("51707", "17569", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("51706", "17569", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("51705", "17569", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("51704", "17569", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("47449", "17237", "_wp_attached_file", "2015/06/woo_logo.png");
INSERT INTO `wp_postmeta` VALUES("51703", "17569", "_menu_item_object_id", "17569");
INSERT INTO `wp_postmeta` VALUES("51701", "17569", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("51702", "17569", "_menu_item_menu_item_parent", "17512");
INSERT INTO `wp_postmeta` VALUES("47450", "17237", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1140;s:6:\"height\";i:230;s:4:\"file\";s:20:\"2015/06/woo_logo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"woo_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"woo_logo-600x121.png\";s:5:\"width\";i:600;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:20:\"woo_logo-115x145.png\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"woo_logo-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"woo_logo-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"woo_logo-600x230.png\";s:5:\"width\";i:600;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("47460", "1332", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("47459", "1332", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("47676", "17261", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("47677", "17261", "_edit_lock", "1442683445:1");
INSERT INTO `wp_postmeta` VALUES("47678", "17261", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("47679", "17261", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("47680", "17261", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("47681", "17261", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("47682", "17261", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("47683", "17261", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("47684", "17261", "cs_onepage", "1");
INSERT INTO `wp_postmeta` VALUES("47685", "17261", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("47686", "17261", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("47687", "17261", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("47688", "17261", "cs_row_navigation", "1");
INSERT INTO `wp_postmeta` VALUES("47689", "17261", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("47690", "17261", "cs_row_navigation_bottom", "1");
INSERT INTO `wp_postmeta` VALUES("47691", "17261", "cs_row_navigation_color", "rgba(207, 106, 106, 1)");
INSERT INTO `wp_postmeta` VALUES("47692", "17261", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("47693", "17261", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("47694", "17261", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("47695", "17261", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("47696", "17261", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("47697", "17261", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("47698", "17261", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("47699", "17261", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("47700", "17261", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("47701", "17261", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("47702", "17261", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("47703", "17261", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("47704", "17261", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("47705", "17261", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("47706", "17261", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("47707", "17261", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("47708", "17261", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("47709", "17261", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("47710", "17261", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("47711", "17261", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("47712", "17261", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("47713", "17261", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("47714", "17261", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("47715", "17261", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("47716", "17261", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("47717", "17261", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("47718", "17261", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("47719", "17261", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("47720", "17261", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("47721", "17261", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("47722", "17261", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("47723", "17261", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("47724", "17261", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("47725", "17261", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("47726", "17261", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("47727", "17261", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("47728", "17261", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("47729", "17261", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("47730", "17261", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("47731", "17261", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("47732", "17261", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("47733", "17261", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("47734", "17261", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("47735", "17261", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("47736", "17261", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("47737", "17261", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("47738", "17261", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("47739", "17261", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("47740", "17261", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("47741", "17261", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("47742", "17261", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("47743", "17261", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("47744", "17261", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("47745", "17261", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("47746", "17261", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("47747", "17261", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("47748", "17261", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("47749", "17261", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("47750", "17261", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("47751", "17261", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("47752", "17261", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("47753", "17261", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("47754", "17261", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("47755", "17261", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("47756", "17261", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("47757", "17261", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("47758", "17261", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("47759", "17261", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("47760", "17261", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("47761", "17261", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("47762", "17261", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("47763", "17261", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("47764", "17261", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("47765", "17261", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("47766", "17261", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("47767", "17261", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("47768", "17261", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("47769", "17261", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("47770", "17261", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("47771", "17261", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("47772", "17261", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("47773", "17261", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("47774", "17261", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("47775", "17261", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("47776", "17261", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("47777", "17261", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("47778", "17261", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("47779", "17261", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("47780", "17261", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("47781", "17261", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("47782", "17261", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("47783", "17261", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("47784", "17261", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("47785", "17261", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("47786", "17261", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("47787", "17261", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("47788", "17261", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("47789", "17261", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("47790", "17261", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("47791", "17261", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("47792", "17261", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("47793", "17261", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("47794", "17261", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("47795", "17261", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("47796", "17261", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("47797", "17261", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("47798", "17261", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("47799", "17261", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("47800", "17261", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("47801", "17261", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("47802", "17261", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("47803", "17261", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("47804", "17261", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("47805", "17261", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("47806", "17261", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("47807", "17261", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("47808", "17261", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("47809", "17261", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("47810", "17261", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("47811", "17261", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("47812", "17261", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("47813", "17261", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("47814", "17261", "price", "");
INSERT INTO `wp_postmeta` VALUES("47815", "17261", "value", "");
INSERT INTO `wp_postmeta` VALUES("47816", "17261", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("47817", "17261", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("47818", "17261", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("47819", "17261", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("47820", "17261", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("47821", "17261", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("47822", "17261", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("47823", "17261", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("47824", "17261", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("47825", "17261", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("47826", "17261", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("47827", "17261", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("47828", "17261", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("47829", "17261", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("47830", "17261", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("47831", "17261", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("47832", "17261", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("47833", "17261", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("47834", "17261", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("47835", "17261", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("47836", "17261", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("47837", "17261", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("47838", "17261", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("47839", "17261", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("47840", "17261", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("47841", "17261", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("47842", "17261", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("47843", "17261", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("47844", "17261", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("47845", "17261", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("47846", "17261", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("47847", "17261", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("47848", "17261", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("47849", "17261", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("47850", "17261", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("47851", "17261", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("47852", "17261", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("47853", "17261", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("47854", "17261", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("47855", "17261", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("47856", "17261", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("47857", "17261", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("47858", "17261", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("47859", "17261", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("47860", "17261", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("47861", "17261", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("47862", "17261", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("47863", "17261", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("47864", "17261", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("47865", "17261", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("47866", "17261", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("47867", "17261", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("47868", "17261", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("47869", "17261", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("47870", "17261", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("47871", "17261", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("47872", "17261", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("47873", "17261", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("47874", "17261", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("47875", "3051", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("47876", "3051", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("48146", "17274", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48147", "17274", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48148", "17274", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48149", "17274", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48150", "17274", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48151", "17274", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48152", "17274", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48153", "17274", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("48154", "17274", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("48155", "17274", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("48156", "17274", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("48157", "17274", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("48158", "17274", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("48159", "17274", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("48160", "17274", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("48161", "17274", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("48162", "17274", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("48163", "17274", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("48164", "17274", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("48165", "17274", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("48166", "17274", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("48167", "17274", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("48168", "17274", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48169", "17274", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("48170", "17274", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("48171", "17274", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("48172", "17274", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48173", "17274", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48174", "17274", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48175", "17274", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48176", "17274", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48177", "17274", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48178", "17274", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48179", "17274", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("48180", "17274", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48181", "17274", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("48182", "17274", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("48183", "17274", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48184", "17274", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("48185", "17274", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("48186", "17274", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("48187", "17274", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("48188", "17274", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("48189", "17274", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("48190", "17274", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("48191", "17274", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("48192", "17274", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("48193", "17274", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48194", "17274", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("48195", "17274", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48196", "17274", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48197", "17274", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("48198", "17274", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48199", "17274", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("48200", "17274", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("48201", "17274", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("48202", "17274", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("48203", "17274", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48204", "17274", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48205", "17274", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48206", "17274", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48207", "17274", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("48208", "17274", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48209", "17274", "cs_page_title_setting", "1");
INSERT INTO `wp_postmeta` VALUES("48210", "17274", "cs_page_title_enable", "0");
INSERT INTO `wp_postmeta` VALUES("48211", "17274", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("48212", "17274", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("48213", "17274", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("48214", "17274", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("48215", "17274", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("48216", "17274", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("48217", "17274", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("48218", "17274", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("48219", "17274", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("48220", "17274", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("48221", "17274", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48222", "17274", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48223", "17274", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48224", "17274", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48225", "17274", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48226", "17274", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("48227", "17274", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("48228", "17274", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("48229", "17274", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("48230", "17274", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("48231", "17274", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("48232", "17274", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("48233", "17274", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("48234", "17274", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("48235", "17274", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("48236", "17274", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("48237", "17274", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("48238", "17274", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48239", "17274", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("48240", "17274", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48241", "17274", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48242", "17274", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48243", "17274", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48244", "17274", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48245", "17274", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48246", "17274", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("48247", "17274", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("48248", "17274", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("48249", "17274", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("48250", "17274", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("48251", "17274", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("48252", "17274", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("48253", "17274", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("48254", "17274", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48255", "17274", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("48256", "17274", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("48257", "17274", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48258", "17274", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("48259", "17274", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("48260", "17274", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("48261", "17274", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("48262", "17274", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("48263", "17274", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("48264", "17274", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("48265", "17274", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("48266", "17274", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("48267", "17274", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("48268", "17274", "price", "");
INSERT INTO `wp_postmeta` VALUES("48269", "17274", "value", "");
INSERT INTO `wp_postmeta` VALUES("48270", "17274", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("48271", "17274", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("48272", "17274", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("48273", "17274", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("48274", "17274", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("48275", "17274", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("48276", "17274", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("48277", "17274", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("48278", "17274", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("48279", "17274", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("48280", "17274", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("48281", "17274", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("48282", "17274", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("48283", "17274", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("48284", "17274", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("48285", "17274", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("48286", "17274", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("48287", "17274", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("48288", "17274", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("48289", "17274", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("48290", "17274", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48291", "17274", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("48292", "17274", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("48293", "17274", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("48294", "17274", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48295", "17274", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("48296", "17274", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("48297", "17274", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("48298", "17274", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("48299", "17274", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("48300", "17274", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("48301", "17274", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("48302", "17274", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("48303", "17274", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("48304", "17274", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48305", "17274", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48306", "17274", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("48307", "17274", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("48308", "17274", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("48309", "17274", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("48310", "17274", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48311", "17274", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48312", "17274", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48313", "17274", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48314", "17274", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48315", "17274", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("48316", "17274", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("48317", "17274", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("48318", "17274", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("48319", "17274", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("48320", "17274", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("48321", "17274", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("48322", "17274", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("48323", "17274", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("48324", "17274", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("48325", "17274", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("48326", "17274", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("48327", "17274", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("48328", "17274", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("48541", "17415", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2015/01/portfolio-13.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-13-150x150.jpg\";s:5:\"width\";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:\"portfolio-13-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:24:\"portfolio-13-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-13-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"portfolio-13-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"portfolio-13-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:4:{i:0;s:9:\"420x315_c\";i:1;s:9:\"550x420_c\";i:2;s:9:\"350x260_c\";i:3;s:9:\"383x287_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("48542", "1003", "_thumbnail_id", "17415");
INSERT INTO `wp_postmeta` VALUES("48544", "17416", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:700;s:6:\"height\";i:525;s:4:\"file\";s:25:\"2015/01/portfolio-123.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"portfolio-123-150x150.jpg\";s:5:\"width\";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:\"portfolio-123-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:25:\"portfolio-123-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"portfolio-123-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"portfolio-123-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"portfolio-123-600x525.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48545", "1011", "_thumbnail_id", "17416");
INSERT INTO `wp_postmeta` VALUES("48547", "17418", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2015/01/portfolio-11.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-11-150x150.jpg\";s:5:\"width\";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:\"portfolio-11-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:24:\"portfolio-11-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-11-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"portfolio-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"portfolio-11-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48548", "1015", "_thumbnail_id", "17418");
INSERT INTO `wp_postmeta` VALUES("48549", "17419", "_wp_attached_file", "2015/01/portfolio-10.jpg");
INSERT INTO `wp_postmeta` VALUES("48550", "17419", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2015/01/portfolio-10.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-10-150x150.jpg\";s:5:\"width\";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:\"portfolio-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:24:\"portfolio-10-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-10-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"portfolio-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"portfolio-10-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48551", "1019", "_thumbnail_id", "17419");
INSERT INTO `wp_postmeta` VALUES("48552", "1019", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("48553", "1019", "price", "");
INSERT INTO `wp_postmeta` VALUES("48554", "1019", "value", "");
INSERT INTO `wp_postmeta` VALUES("48555", "1019", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("48556", "1019", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("48557", "1019", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("48558", "1019", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("48559", "1019", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("48560", "1019", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("48561", "1019", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("48562", "1019", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("48563", "1019", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("48564", "1019", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("48565", "1019", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("48566", "1019", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("48567", "1019", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("48568", "1019", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("48569", "1019", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("48570", "1019", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("48571", "1019", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("48572", "1019", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("48573", "1019", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("48574", "1019", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("48575", "1019", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48576", "1019", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("48577", "1019", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("48578", "1019", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("48579", "1019", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48580", "1019", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("48581", "1019", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("48582", "1019", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("48583", "1019", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("48584", "1019", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("48585", "1019", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("48586", "1019", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("48587", "1019", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48588", "1019", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48589", "1019", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("48590", "1023", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("48591", "1023", "price", "");
INSERT INTO `wp_postmeta` VALUES("48592", "1023", "value", "");
INSERT INTO `wp_postmeta` VALUES("48593", "1023", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("48594", "1023", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("48595", "1023", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("48596", "1023", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("48597", "1023", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("48598", "1023", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("48599", "1023", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("48600", "1023", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("48601", "1023", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("48602", "1023", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("48603", "1023", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("48604", "1023", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("48605", "1023", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("48606", "1023", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("48607", "1023", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("48608", "1023", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("48609", "1023", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("48610", "1023", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("48611", "1023", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("48612", "1023", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("48613", "1023", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48614", "1023", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("48615", "1023", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("48616", "1023", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("48617", "1023", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48618", "1023", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("48619", "1023", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("48620", "1023", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("48621", "1023", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("48622", "1023", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("48623", "1023", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("48624", "1023", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("48625", "1023", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48626", "1023", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48627", "1023", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("48629", "17421", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2015/01/portfolio-9.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"portfolio-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"portfolio-9-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:23:\"portfolio-9-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"portfolio-9-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"portfolio-9-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"portfolio-9-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("48630", "1023", "_thumbnail_id", "17421");
INSERT INTO `wp_postmeta` VALUES("48631", "17433", "_wp_attached_file", "2015/11/bg-gallery.jpg");
INSERT INTO `wp_postmeta` VALUES("48632", "17433", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2015/11/bg-gallery.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-gallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-gallery-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-gallery-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:22:\"bg-gallery-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-gallery-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"bg-gallery-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"bg-gallery-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("52603", "17681", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("52562", "17679", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("52558", "17679", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("52559", "17679", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("52560", "17679", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("52646", "17679", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("52520", "14279", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48657", "17452", "_wp_attached_file", "2015/01/gallery-8_3.jpg");
INSERT INTO `wp_postmeta` VALUES("48658", "17452", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:658;s:4:\"file\";s:23:\"2015/01/gallery-8_3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"gallery-8_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:23:\"gallery-8_3-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"gallery-8_3-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:23:\"gallery-8_3-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"gallery-8_3-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"gallery-8_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"gallery-8_3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:10:{i:0;s:9:\"383x287_c\";i:1;s:7:\"70x70_c\";i:2;s:9:\"570x427_c\";i:3;s:9:\"300x250_c\";i:4;s:9:\"330x260_c\";i:5;s:9:\"350x260_c\";i:6;s:9:\"570x428_c\";i:7;s:9:\"550x420_c\";i:8;s:9:\"420x315_c\";i:9;s:9:\"420x315_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("48659", "836", "_thumbnail_id", "17452");
INSERT INTO `wp_postmeta` VALUES("48660", "836", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("48661", "836", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("48662", "836", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("48663", "836", "cs_post_custom_setting", "");
INSERT INTO `wp_postmeta` VALUES("48664", "836", "cs_post_enable_title", "");
INSERT INTO `wp_postmeta` VALUES("48665", "836", "cs_post_enable_thumbnail", "");
INSERT INTO `wp_postmeta` VALUES("48666", "836", "cs_post_page_title_custom", "");
INSERT INTO `wp_postmeta` VALUES("48667", "836", "cs_post_page_title", "");
INSERT INTO `wp_postmeta` VALUES("48668", "836", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("48669", "836", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48670", "836", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48671", "836", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("48672", "836", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("48673", "836", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("48674", "836", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("48675", "836", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48676", "836", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48677", "836", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("48678", "836", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("48679", "836", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("48680", "836", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("48681", "836", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48682", "836", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48683", "836", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48684", "836", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48685", "836", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48686", "836", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("48687", "836", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("48688", "836", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("48689", "836", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("48690", "836", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("48691", "836", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("48692", "836", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("48693", "836", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("48694", "836", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("48695", "836", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("48696", "836", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("48697", "836", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("48698", "836", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("48699", "836", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("48700", "17453", "_wp_attached_file", "2015/01/gallery-10_3.jpg");
INSERT INTO `wp_postmeta` VALUES("48701", "17453", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:658;s:4:\"file\";s:24:\"2015/01/gallery-10_3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"gallery-10_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:24:\"gallery-10_3-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"gallery-10_3-1170x658.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:24:\"gallery-10_3-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"gallery-10_3-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"gallery-10_3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"gallery-10_3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:14:\"resized_images\";a:8:{i:0;s:9:\"383x287_c\";i:1;s:9:\"300x250_c\";i:2;s:9:\"330x260_c\";i:3;s:9:\"350x260_c\";i:4;s:9:\"570x428_c\";i:5;s:9:\"550x420_c\";i:6;s:9:\"420x315_c\";i:7;s:9:\"420x315_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("52763", "666", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("48703", "666", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("48704", "666", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("48705", "666", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("48706", "666", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("48707", "666", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("48708", "17457", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("48709", "17457", "_edit_lock", "1449395762:1");
INSERT INTO `wp_postmeta` VALUES("48710", "17457", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("48711", "17457", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("48712", "17457", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("48713", "17457", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("48714", "17457", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("48715", "17457", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("48716", "17457", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("48717", "17457", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("48718", "17457", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("48719", "17457", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("48720", "17457", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("48721", "17457", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48722", "17457", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("48723", "17457", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48724", "17457", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("48725", "17457", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48726", "17457", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48727", "17457", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48728", "17457", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48729", "17457", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48730", "17457", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48731", "17457", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48732", "17457", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("48733", "17457", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("48734", "17457", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("48735", "17457", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("48736", "17457", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("48737", "17457", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("48738", "17457", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("48739", "17457", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("48740", "17457", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("48741", "17457", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("48742", "17457", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("48743", "17457", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("48744", "17457", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("48745", "17457", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("48746", "17457", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("48747", "17457", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48748", "17457", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("48749", "17457", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("48750", "17457", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("48751", "17457", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48752", "17457", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48753", "17457", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48754", "17457", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48755", "17457", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48756", "17457", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48757", "17457", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48758", "17457", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("48759", "17457", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48760", "17457", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("48761", "17457", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("48762", "17457", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48763", "17457", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("48764", "17457", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("48765", "17457", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("48766", "17457", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("48767", "17457", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("48768", "17457", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("48769", "17457", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("48770", "17457", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("48771", "17457", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("48772", "17457", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48773", "17457", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("48774", "17457", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48775", "17457", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48776", "17457", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("48777", "17457", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48778", "17457", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("48779", "17457", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("48780", "17457", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("48781", "17457", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("48782", "17457", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48783", "17457", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48784", "17457", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48785", "17457", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48786", "17457", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("48787", "17457", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48788", "17457", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("48789", "17457", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("48790", "17457", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("48791", "17457", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("48792", "17457", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("48793", "17457", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("48794", "17457", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("48795", "17457", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("48796", "17457", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("48797", "17457", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("48798", "17457", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("48799", "17457", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("48800", "17457", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48801", "17457", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48802", "17457", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48803", "17457", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48804", "17457", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48805", "17457", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("48806", "17457", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("48807", "17457", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("48808", "17457", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("48809", "17457", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("48810", "17457", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("48811", "17457", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("48812", "17457", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("48813", "17457", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("48814", "17457", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("48815", "17457", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("48816", "17457", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("48817", "17457", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48818", "17457", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("48819", "17457", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48820", "17457", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48821", "17457", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48822", "17457", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48823", "17457", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48824", "17457", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48825", "17457", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("48826", "17457", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("48827", "17457", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("48828", "17457", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("48829", "17457", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("48830", "17457", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("48831", "17457", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("48832", "17457", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("48833", "17457", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48834", "17457", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("48835", "17457", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("48836", "17457", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48837", "17457", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("48838", "17457", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("48839", "17457", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("48840", "17457", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("48841", "17457", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("48842", "17457", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("48843", "17457", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("48844", "17457", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("48845", "17457", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("48846", "17457", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("48847", "17457", "price", "");
INSERT INTO `wp_postmeta` VALUES("48848", "17457", "value", "");
INSERT INTO `wp_postmeta` VALUES("48849", "17457", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("48850", "17457", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("48851", "17457", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("48852", "17457", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("48853", "17457", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("48854", "17457", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("48855", "17457", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("48856", "17457", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("48857", "17457", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("48858", "17457", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("48859", "17457", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("48860", "17457", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("48861", "17457", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("48862", "17457", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("48863", "17457", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("48864", "17457", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("48865", "17457", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("48866", "17457", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("48867", "17457", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("48868", "17457", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("48869", "17457", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48870", "17457", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("48871", "17457", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("48872", "17457", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("48873", "17457", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48874", "17457", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("48875", "17457", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("48876", "17457", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("48877", "17457", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("48878", "17457", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("48879", "17457", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("48880", "17457", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("48881", "17457", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("48882", "17457", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("48883", "17457", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("48884", "17457", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("48885", "17457", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("48886", "17457", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("48887", "17457", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("48888", "17457", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("48889", "17457", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48890", "17457", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48891", "17457", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48892", "17457", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48893", "17457", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("48894", "17457", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("48895", "17457", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("48896", "17457", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("48897", "17457", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("48898", "17457", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("48899", "17457", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("48900", "17457", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("48901", "17457", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("48902", "17457", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("48903", "17457", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("48904", "17457", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("48905", "17457", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("48906", "17457", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("48907", "17457", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("48908", "17460", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("48909", "17460", "_edit_lock", "1449413399:1");
INSERT INTO `wp_postmeta` VALUES("48910", "17460", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("48911", "17460", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("48912", "17460", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("48913", "17460", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("48914", "17460", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("48915", "17460", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("48916", "17460", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("48917", "17460", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("48918", "17460", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("48919", "17460", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("48920", "17460", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("48921", "17460", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48922", "17460", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("48923", "17460", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48924", "17460", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("48925", "17460", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48926", "17460", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48927", "17460", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48928", "17460", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48929", "17460", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48930", "17460", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48931", "17460", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48932", "17460", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("48933", "17460", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("48934", "17460", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("48935", "17460", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("48936", "17460", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("48937", "17460", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("48938", "17460", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("48939", "17460", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("48940", "17460", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("48941", "17460", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("48942", "17460", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("48943", "17460", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("48944", "17460", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("48945", "17460", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("48946", "17460", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("48947", "17460", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48948", "17460", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("48949", "17460", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("48950", "17460", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("48951", "17460", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48952", "17460", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("48953", "17460", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("48954", "17460", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("48955", "17460", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("48956", "17460", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("48957", "17460", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("48958", "17460", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("48959", "17460", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48960", "17460", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("48961", "17460", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("48962", "17460", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("48963", "17460", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("48964", "17460", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("48965", "17460", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("48966", "17460", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("48967", "17460", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("48968", "17460", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("48969", "17460", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("48970", "17460", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("48971", "17460", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("48972", "17460", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48973", "17460", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("48974", "17460", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("48975", "17460", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48976", "17460", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("48977", "17460", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("48978", "17460", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("48979", "17460", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("48980", "17460", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("48981", "17460", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("48982", "17460", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48983", "17460", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48984", "17460", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48985", "17460", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48986", "17460", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("48987", "17460", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("48988", "17460", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("48989", "17460", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("48990", "17460", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("48991", "17460", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("48992", "17460", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("48993", "17460", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("48994", "17460", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("48995", "17460", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("48996", "17460", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("48997", "17460", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("48998", "17460", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("48999", "17460", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("49000", "17460", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49001", "17460", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49002", "17460", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49003", "17460", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49004", "17460", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49005", "17460", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("49006", "17460", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("49007", "17460", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("49008", "17460", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("49009", "17460", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("49010", "17460", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("49011", "17460", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("49012", "17460", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("49013", "17460", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49014", "17460", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("49015", "17460", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("49016", "17460", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("49017", "17460", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49018", "17460", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("49019", "17460", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49020", "17460", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49021", "17460", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49022", "17460", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49023", "17460", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49024", "17460", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49025", "17460", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("49026", "17460", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("49027", "17460", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49028", "17460", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49029", "17460", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49030", "17460", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49031", "17460", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49032", "17460", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("49033", "17460", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49034", "17460", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("49035", "17460", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("49036", "17460", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49037", "17460", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("49038", "17460", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("49039", "17460", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("49040", "17460", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("49041", "17460", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("49042", "17460", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("49043", "17460", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("49044", "17460", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("49045", "17460", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("49046", "17460", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("49047", "17460", "price", "");
INSERT INTO `wp_postmeta` VALUES("49048", "17460", "value", "");
INSERT INTO `wp_postmeta` VALUES("49049", "17460", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("49050", "17460", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("49051", "17460", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("49052", "17460", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("49053", "17460", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("49054", "17460", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("49055", "17460", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("49056", "17460", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("49057", "17460", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("49058", "17460", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("49059", "17460", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("49060", "17460", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("49061", "17460", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("49062", "17460", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("49063", "17460", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("49064", "17460", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("49065", "17460", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("49066", "17460", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("49067", "17460", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("49068", "17460", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("49069", "17460", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49070", "17460", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("49071", "17460", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("49072", "17460", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("49073", "17460", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49074", "17460", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("49075", "17460", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("49076", "17460", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("49077", "17460", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("49078", "17460", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("49079", "17460", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("49080", "17460", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("49081", "17460", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("49082", "17460", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("49083", "17460", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49084", "17460", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49085", "17460", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("49086", "17460", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("49087", "17460", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("49088", "17460", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("49089", "17460", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49090", "17460", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49091", "17460", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49092", "17460", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49093", "17460", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49094", "17460", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("49095", "17460", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("49096", "17460", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("49097", "17460", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("49098", "17460", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("49099", "17460", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("49100", "17460", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("49101", "17460", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("49102", "17460", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("49103", "17460", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("49104", "17460", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("49105", "17460", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("49106", "17460", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("49107", "17460", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("49108", "17465", "_wp_attached_file", "2015/12/logo.png");
INSERT INTO `wp_postmeta` VALUES("49109", "17465", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:142;s:6:\"height\";i:40;s:4:\"file\";s:16:\"2015/12/logo.png\";s:5:\"sizes\";a:1:{s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:15:\"logo-115x40.png\";s:5:\"width\";i:115;s:6:\"height\";i:40;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("49110", "17467", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49111", "17467", "_menu_item_menu_item_parent", "17468");
INSERT INTO `wp_postmeta` VALUES("49112", "17467", "_menu_item_object_id", "17460");
INSERT INTO `wp_postmeta` VALUES("49113", "17467", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49114", "17467", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49115", "17467", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49116", "17467", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49117", "17467", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49180", "17467", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49119", "17467", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("49120", "17467", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("49121", "17467", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49122", "17467", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("49123", "17467", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49124", "17467", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("49125", "17467", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49126", "17467", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49127", "17467", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("49128", "17467", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("49129", "17467", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49130", "17467", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49131", "17467", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49132", "17467", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("49133", "17468", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49134", "17468", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("49135", "17468", "_menu_item_object_id", "17457");
INSERT INTO `wp_postmeta` VALUES("49136", "17468", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49137", "17468", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49138", "17468", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49139", "17468", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49140", "17468", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49179", "17468", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49142", "17468", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("49143", "17468", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("49144", "17468", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49145", "17468", "_menu_item_column_width", "250");
INSERT INTO `wp_postmeta` VALUES("49146", "17468", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49147", "17468", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("49148", "17468", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49149", "17468", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("49150", "17468", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("49151", "17468", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("49152", "17468", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("49153", "17468", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49154", "17468", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49155", "17468", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("49156", "17469", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49157", "17469", "_menu_item_menu_item_parent", "17468");
INSERT INTO `wp_postmeta` VALUES("49158", "17469", "_menu_item_object_id", "17457");
INSERT INTO `wp_postmeta` VALUES("49159", "17469", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49160", "17469", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49161", "17469", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49162", "17469", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49163", "17469", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49181", "17469", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49165", "17469", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("49166", "17469", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("49167", "17469", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49168", "17469", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("49169", "17469", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49170", "17469", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("49171", "17469", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49172", "17469", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49173", "17469", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("49174", "17469", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("49175", "17469", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49176", "17469", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49177", "17469", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49178", "17469", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("49238", "17472", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("49239", "17472", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("49240", "17472", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("49241", "17472", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("49258", "17472", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("49257", "17472", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("49182", "17470", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49183", "17470", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("49184", "17470", "_menu_item_object_id", "17274");
INSERT INTO `wp_postmeta` VALUES("49185", "17470", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49186", "17470", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49187", "17470", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49188", "17470", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49189", "17470", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49228", "17470", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49191", "17470", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("49192", "17470", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("49193", "17470", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49194", "17470", "_menu_item_column_width", "250");
INSERT INTO `wp_postmeta` VALUES("49195", "17470", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49196", "17470", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("49197", "17470", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49198", "17470", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("49199", "17470", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("49200", "17470", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("49201", "17470", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("49202", "17470", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49203", "17470", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49204", "17470", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("51762", "17601", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("51761", "17601", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("51760", "17601", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("51759", "17601", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("51758", "17601", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("51772", "17601", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51755", "17601", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("51756", "17601", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("51754", "17601", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("51753", "17601", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("51752", "17601", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("51751", "17601", "_menu_item_object_id", "3629");
INSERT INTO `wp_postmeta` VALUES("51750", "17601", "_menu_item_menu_item_parent", "726");
INSERT INTO `wp_postmeta` VALUES("51749", "17601", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49275", "17472", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49274", "17472", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49276", "17472", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49277", "17472", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49278", "17472", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49279", "17472", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("49280", "17472", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49281", "17472", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49282", "17472", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49283", "17472", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49284", "17472", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49285", "17472", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49286", "17472", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49287", "17472", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("49288", "17472", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49289", "17472", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("49290", "17472", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("49291", "17472", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("49292", "17472", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("49293", "17472", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49294", "17472", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("49295", "17472", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49296", "17472", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49297", "17472", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("49298", "17472", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49299", "17472", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("49300", "17472", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("49301", "17472", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("49302", "17472", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("49303", "17472", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49304", "17472", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49305", "17472", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49306", "17472", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49307", "17472", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("49308", "17472", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49309", "17472", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("49310", "17472", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("49311", "17472", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("49312", "17472", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("49313", "17472", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("49314", "17472", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("49315", "17472", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("49316", "17472", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("49317", "17472", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("49318", "17472", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("49319", "17472", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("49320", "17472", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("49321", "17472", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49322", "17472", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49323", "17472", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49324", "17472", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49325", "17472", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49326", "17472", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("49327", "17472", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("49328", "17472", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("49329", "17472", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("49330", "17472", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("49331", "17472", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("49332", "17472", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("49333", "17472", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("49334", "17472", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49335", "17472", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("49336", "17472", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("49337", "17472", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("49338", "17472", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49339", "17472", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("49340", "17472", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49341", "17472", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49342", "17472", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49343", "17472", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49344", "17472", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49345", "17472", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49346", "17472", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("49347", "17472", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("49348", "17472", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49349", "17472", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49350", "17472", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49351", "17472", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49352", "17472", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49353", "17472", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("49354", "17472", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49355", "17472", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("49356", "17472", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("49357", "17472", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49358", "17472", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("49359", "17472", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("49360", "17472", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("49361", "17472", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("49362", "17472", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("49363", "17472", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("49364", "17472", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("49365", "17472", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("49366", "17472", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("49367", "17472", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("49368", "17472", "price", "");
INSERT INTO `wp_postmeta` VALUES("49369", "17472", "value", "");
INSERT INTO `wp_postmeta` VALUES("49370", "17472", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("49371", "17472", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("49372", "17472", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("49373", "17472", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("49374", "17472", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("49375", "17472", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("49376", "17472", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("49377", "17472", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("49378", "17472", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("49379", "17472", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("49380", "17472", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("49381", "17472", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("49382", "17472", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("49383", "17472", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("49384", "17472", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("49385", "17472", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("49386", "17472", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("49387", "17472", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("49388", "17472", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("49389", "17472", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("49390", "17472", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49391", "17472", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("49392", "17472", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("49393", "17472", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("49394", "17472", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49395", "17472", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("49396", "17472", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("49397", "17472", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("49398", "17472", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("49399", "17472", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("49400", "17472", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("49401", "17472", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("49402", "17472", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("49403", "17472", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("49404", "17472", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49405", "17472", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49406", "17472", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("49407", "17472", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("49408", "17472", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("49409", "17472", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("49410", "17472", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49411", "17472", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49412", "17472", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49413", "17472", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49414", "17472", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49415", "17472", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("49416", "17472", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("49417", "17472", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("49418", "17472", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("49419", "17472", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("49420", "17472", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("49421", "17472", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("49422", "17472", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("49423", "17472", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("49424", "17472", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("49425", "17472", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("49426", "17472", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("49427", "17472", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("49428", "17472", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("49429", "17472", "_edit_lock", "1449417413:1");
INSERT INTO `wp_postmeta` VALUES("49430", "17483", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("49431", "17483", "_edit_lock", "1451488692:1");
INSERT INTO `wp_postmeta` VALUES("49432", "17483", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("49433", "17483", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("49434", "17483", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49435", "17483", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("49436", "17483", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("49437", "17483", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("49438", "17483", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("49439", "17483", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("49440", "17483", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("49441", "17483", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("49442", "17483", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("49443", "17483", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49444", "17483", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("49445", "17483", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49446", "17483", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("49447", "17483", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49448", "17483", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49449", "17483", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49450", "17483", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49451", "17483", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49452", "17483", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49453", "17483", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49454", "17483", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("49455", "17483", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("49456", "17483", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("49457", "17483", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("49458", "17483", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("49459", "17483", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("49460", "17483", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("49461", "17483", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("49462", "17483", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49463", "17483", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("49464", "17483", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49465", "17483", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("49466", "17483", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("49467", "17483", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("49468", "17483", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("49469", "17483", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49470", "17483", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49471", "17483", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49472", "17483", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49473", "17483", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49474", "17483", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49475", "17483", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49476", "17483", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49477", "17483", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49478", "17483", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49479", "17483", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49480", "17483", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("49481", "17483", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49482", "17483", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49483", "17483", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49484", "17483", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49485", "17483", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49486", "17483", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49487", "17483", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49488", "17483", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("49489", "17483", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49490", "17483", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("49491", "17483", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("49492", "17483", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("49493", "17483", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("49494", "17483", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49495", "17483", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("49496", "17483", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49497", "17483", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49498", "17483", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("49499", "17483", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49500", "17483", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("49501", "17483", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("49502", "17483", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("49503", "17483", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("49504", "17483", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49505", "17483", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49506", "17483", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49507", "17483", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49508", "17483", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("49509", "17483", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49510", "17483", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("49511", "17483", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("49512", "17483", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("49513", "17483", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("49514", "17483", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("49515", "17483", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("49516", "17483", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("49517", "17483", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("49518", "17483", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("49519", "17483", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("49520", "17483", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("49521", "17483", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("49522", "17483", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49523", "17483", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49524", "17483", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49525", "17483", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49526", "17483", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49527", "17483", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("49528", "17483", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("49529", "17483", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("49530", "17483", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("49531", "17483", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("49532", "17483", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("49533", "17483", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("49534", "17483", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("49535", "17483", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49536", "17483", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("49537", "17483", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("49538", "17483", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("49539", "17483", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49540", "17483", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("49541", "17483", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49542", "17483", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49543", "17483", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49544", "17483", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49545", "17483", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49546", "17483", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49547", "17483", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("49548", "17483", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("49549", "17483", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49550", "17483", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49551", "17483", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49552", "17483", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49553", "17483", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49554", "17483", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("49555", "17483", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49556", "17483", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("49557", "17483", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("49558", "17483", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49559", "17483", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("49560", "17483", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("49561", "17483", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("49562", "17483", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("49563", "17483", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("49564", "17483", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("49565", "17483", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("49566", "17483", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("49567", "17483", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("49568", "17483", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("49569", "17483", "price", "");
INSERT INTO `wp_postmeta` VALUES("49570", "17483", "value", "");
INSERT INTO `wp_postmeta` VALUES("49571", "17483", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("49572", "17483", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("49573", "17483", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("49574", "17483", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("49575", "17483", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("49576", "17483", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("49577", "17483", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("49578", "17483", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("49579", "17483", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("49580", "17483", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("49581", "17483", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("49582", "17483", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("49583", "17483", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("49584", "17483", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("49585", "17483", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("49586", "17483", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("49587", "17483", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("49588", "17483", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("49589", "17483", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("49590", "17483", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("49591", "17483", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49592", "17483", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("49593", "17483", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("49594", "17483", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("49595", "17483", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49596", "17483", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("49597", "17483", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("49598", "17483", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("49599", "17483", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("49600", "17483", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("49601", "17483", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("49602", "17483", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("49603", "17483", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("49604", "17483", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("49605", "17483", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49606", "17483", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49607", "17483", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("49608", "17483", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("49609", "17483", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("49610", "17483", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("49611", "17483", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49612", "17483", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49613", "17483", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49614", "17483", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49615", "17483", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49616", "17483", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("49617", "17483", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("49618", "17483", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("49619", "17483", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("49620", "17483", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("49621", "17483", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("49622", "17483", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("49623", "17483", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("49624", "17483", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("49625", "17483", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("49626", "17483", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("49627", "17483", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("49628", "17483", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("49629", "17483", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("49630", "664", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("49631", "664", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("49632", "664", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49633", "664", "cs_post_custom_setting", "");
INSERT INTO `wp_postmeta` VALUES("49634", "664", "cs_post_enable_title", "");
INSERT INTO `wp_postmeta` VALUES("49635", "664", "cs_post_enable_thumbnail", "");
INSERT INTO `wp_postmeta` VALUES("49636", "664", "cs_post_page_title_custom", "");
INSERT INTO `wp_postmeta` VALUES("49637", "664", "cs_post_page_title", "");
INSERT INTO `wp_postmeta` VALUES("49638", "664", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("49639", "664", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49640", "664", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49641", "664", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("49642", "664", "cs_post_title_color", "");
INSERT INTO `wp_postmeta` VALUES("49643", "664", "cs_post_subtitle_color", "");
INSERT INTO `wp_postmeta` VALUES("49644", "664", "cs_post_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("49645", "664", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("49646", "664", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("49647", "664", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("49648", "664", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49649", "664", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49650", "664", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("49651", "664", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("49652", "664", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("49653", "664", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("49654", "664", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49655", "664", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49656", "664", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49657", "664", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49658", "664", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49659", "664", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("49660", "664", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("49661", "664", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("49662", "664", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("49663", "664", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("49664", "664", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("49665", "664", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("49666", "664", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("49667", "664", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("49668", "664", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("49669", "664", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("49670", "664", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("49671", "664", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("49672", "664", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("49673", "17487", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49674", "17487", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("49675", "17487", "_menu_item_object_id", "17483");
INSERT INTO `wp_postmeta` VALUES("49676", "17487", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49677", "17487", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49678", "17487", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49679", "17487", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49680", "17487", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49742", "17487", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49682", "17487", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("49683", "17487", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("49684", "17487", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49685", "17487", "_menu_item_column_width", "250");
INSERT INTO `wp_postmeta` VALUES("49686", "17487", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49687", "17487", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("49688", "17487", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49689", "17487", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("49690", "17487", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("49691", "17487", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("49692", "17487", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("49693", "17487", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49694", "17487", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49695", "17487", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("49696", "17488", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49697", "17488", "_menu_item_menu_item_parent", "17487");
INSERT INTO `wp_postmeta` VALUES("49698", "17488", "_menu_item_object_id", "17472");
INSERT INTO `wp_postmeta` VALUES("49699", "17488", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49700", "17488", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49701", "17488", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49702", "17488", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49703", "17488", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49744", "17488", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49705", "17488", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("49706", "17488", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("49707", "17488", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49708", "17488", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("49709", "17488", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49710", "17488", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("49711", "17488", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49712", "17488", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49713", "17488", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("49714", "17488", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("49715", "17488", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49716", "17488", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49717", "17488", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49718", "17488", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("49719", "17489", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("49720", "17489", "_menu_item_menu_item_parent", "17487");
INSERT INTO `wp_postmeta` VALUES("49721", "17489", "_menu_item_object_id", "17483");
INSERT INTO `wp_postmeta` VALUES("49722", "17489", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("49723", "17489", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("49724", "17489", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("49725", "17489", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("49726", "17489", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("49743", "17489", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49728", "17489", "_menu_item_submenu_type", "");
INSERT INTO `wp_postmeta` VALUES("49729", "17489", "_menu_item_dropdown", "");
INSERT INTO `wp_postmeta` VALUES("49730", "17489", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("49731", "17489", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("49732", "17489", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("49733", "17489", "_menu_item_hide_link", "0");
INSERT INTO `wp_postmeta` VALUES("49734", "17489", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49735", "17489", "_menu_item_bg_image_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49736", "17489", "_menu_item_bg_image_size", "");
INSERT INTO `wp_postmeta` VALUES("49737", "17489", "_menu_item_bg_image_position", "");
INSERT INTO `wp_postmeta` VALUES("49738", "17489", "_menu_item_bg_image_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49739", "17489", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49740", "17489", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("49741", "17489", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("49747", "17490", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("49746", "17490", "_edit_lock", "1449591661:1");
INSERT INTO `wp_postmeta` VALUES("49745", "17490", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("49748", "17490", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("49749", "17490", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49750", "17490", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("49751", "17490", "cs_page_layout", "right-fixed");
INSERT INTO `wp_postmeta` VALUES("49752", "17490", "cs_sidebar_left", "cshero-widget-right");
INSERT INTO `wp_postmeta` VALUES("49753", "17490", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("49754", "17490", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("49755", "17490", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("49756", "17490", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("49757", "17490", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("49758", "17490", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49759", "17490", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("49760", "17490", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49761", "17490", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("49762", "17490", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49763", "17490", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49764", "17490", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49765", "17490", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49766", "17490", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49767", "17490", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49768", "17490", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49769", "17490", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("49770", "17490", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("49771", "17490", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("49772", "17490", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("49773", "17490", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("49774", "17490", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("49775", "17490", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("49776", "17490", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("49777", "17490", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49778", "17490", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("49779", "17490", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49780", "17490", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("49781", "17490", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("49782", "17490", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("49783", "17490", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("49784", "17490", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49785", "17490", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49786", "17490", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49787", "17490", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49788", "17490", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49789", "17490", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49790", "17490", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49791", "17490", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49792", "17490", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49793", "17490", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49794", "17490", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49795", "17490", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("49796", "17490", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49797", "17490", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49798", "17490", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49799", "17490", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49800", "17490", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49801", "17490", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49802", "17490", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49803", "17490", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("49804", "17490", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49805", "17490", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("49806", "17490", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("49807", "17490", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("49808", "17490", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("49809", "17490", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49810", "17490", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("49811", "17490", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49812", "17490", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49813", "17490", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("49814", "17490", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49815", "17490", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("49816", "17490", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("49817", "17490", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("49818", "17490", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("49819", "17490", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49820", "17490", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49821", "17490", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49822", "17490", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49823", "17490", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("49824", "17490", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49825", "17490", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("49826", "17490", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("49827", "17490", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("49828", "17490", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("49829", "17490", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("49830", "17490", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("49831", "17490", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("49832", "17490", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("49833", "17490", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("49834", "17490", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("49835", "17490", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("49836", "17490", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("49837", "17490", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49838", "17490", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49839", "17490", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49840", "17490", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49841", "17490", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49842", "17490", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("49843", "17490", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("49844", "17490", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("49845", "17490", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("49846", "17490", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("49847", "17490", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("49848", "17490", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("49849", "17490", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("49850", "17490", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49851", "17490", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("49852", "17490", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("49853", "17490", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("49854", "17490", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49855", "17490", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("49856", "17490", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49857", "17490", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49858", "17490", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49859", "17490", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49860", "17490", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49861", "17490", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49862", "17490", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("49863", "17490", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("49864", "17490", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49865", "17490", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49866", "17490", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("49867", "17490", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49868", "17490", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("49869", "17490", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("49870", "17490", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49871", "17490", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("49872", "17490", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("49873", "17490", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49874", "17490", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("49875", "17490", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("49876", "17490", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("49877", "17490", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("49878", "17490", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("49879", "17490", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("49880", "17490", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("49881", "17490", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("49882", "17490", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("49883", "17490", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("49884", "17490", "price", "");
INSERT INTO `wp_postmeta` VALUES("49885", "17490", "value", "");
INSERT INTO `wp_postmeta` VALUES("49886", "17490", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("49887", "17490", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("49888", "17490", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("49889", "17490", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("49890", "17490", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("49891", "17490", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("49892", "17490", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("49893", "17490", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("49894", "17490", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("49895", "17490", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("49896", "17490", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("49897", "17490", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("49898", "17490", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("49899", "17490", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("49900", "17490", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("49901", "17490", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("49902", "17490", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("49903", "17490", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("49904", "17490", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("49905", "17490", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("49906", "17490", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49907", "17490", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("49908", "17490", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("49909", "17490", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("49910", "17490", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49911", "17490", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("49912", "17490", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("49913", "17490", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("49914", "17490", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("49915", "17490", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("49916", "17490", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("49917", "17490", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("49918", "17490", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("49919", "17490", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("49920", "17490", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("49921", "17490", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("49922", "17490", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("49923", "17490", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("49924", "17490", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("49925", "17490", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("49926", "17490", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49927", "17490", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49928", "17490", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49929", "17490", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49930", "17490", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("49931", "17490", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("49932", "17490", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("49933", "17490", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("49934", "17490", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("49935", "17490", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("49936", "17490", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("49937", "17490", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("49938", "17490", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("49939", "17490", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("49940", "17490", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("49941", "17490", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("49942", "17490", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("49943", "17490", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("49944", "17490", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("49945", "17496", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("49946", "17496", "_edit_lock", "1449591938:1");
INSERT INTO `wp_postmeta` VALUES("49947", "17496", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("49948", "17496", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("49949", "17496", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("49950", "17496", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("49951", "17496", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("49952", "17496", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("49953", "17496", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("49954", "17496", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("49955", "17496", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("49956", "17496", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("49957", "17496", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("49958", "17496", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("49959", "17496", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("49960", "17496", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49961", "17496", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("49962", "17496", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("49963", "17496", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49964", "17496", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49965", "17496", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49966", "17496", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49967", "17496", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49968", "17496", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49969", "17496", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("49970", "17496", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("49971", "17496", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("49972", "17496", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("49973", "17496", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("49974", "17496", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("49975", "17496", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("49976", "17496", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("49977", "17496", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("49978", "17496", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("49979", "17496", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("49980", "17496", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("49981", "17496", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("49982", "17496", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("49983", "17496", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("49984", "17496", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("49985", "17496", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("49986", "17496", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("49987", "17496", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("49988", "17496", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49989", "17496", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("49990", "17496", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("49991", "17496", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("49992", "17496", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("49993", "17496", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("49994", "17496", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("49995", "17496", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("49996", "17496", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("49997", "17496", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49998", "17496", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("49999", "17496", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50000", "17496", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50001", "17496", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50002", "17496", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50003", "17496", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("50004", "17496", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50005", "17496", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("50006", "17496", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("50007", "17496", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("50008", "17496", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("50009", "17496", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50010", "17496", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("50011", "17496", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50012", "17496", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50013", "17496", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("50014", "17496", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50015", "17496", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("50016", "17496", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("50017", "17496", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("50018", "17496", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("50019", "17496", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50020", "17496", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50021", "17496", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50022", "17496", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50023", "17496", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("50024", "17496", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50025", "17496", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("50026", "17496", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("50027", "17496", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("50028", "17496", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("50029", "17496", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("50030", "17496", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("50031", "17496", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("50032", "17496", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("50033", "17496", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("50034", "17496", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("50035", "17496", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("50036", "17496", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("50037", "17496", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50038", "17496", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50039", "17496", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50040", "17496", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50041", "17496", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50042", "17496", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("50043", "17496", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("50044", "17496", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("50045", "17496", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("50046", "17496", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("50047", "17496", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("50048", "17496", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("50049", "17496", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("50050", "17496", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50051", "17496", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("50052", "17496", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("50053", "17496", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("50054", "17496", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50055", "17496", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("50056", "17496", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50057", "17496", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50058", "17496", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50059", "17496", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50060", "17496", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50061", "17496", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50062", "17496", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("50063", "17496", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("50064", "17496", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50065", "17496", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50066", "17496", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50067", "17496", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50068", "17496", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50069", "17496", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("50070", "17496", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50071", "17496", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("50072", "17496", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("50073", "17496", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50074", "17496", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("50075", "17496", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("50076", "17496", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("50077", "17496", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("50078", "17496", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("50079", "17496", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("50080", "17496", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("50081", "17496", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("50082", "17496", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("50083", "17496", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("50084", "17496", "price", "");
INSERT INTO `wp_postmeta` VALUES("50085", "17496", "value", "");
INSERT INTO `wp_postmeta` VALUES("50086", "17496", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("50087", "17496", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("50088", "17496", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("50089", "17496", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("50090", "17496", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("50091", "17496", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("50092", "17496", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("50093", "17496", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("50094", "17496", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("50095", "17496", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("50096", "17496", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("50097", "17496", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("50098", "17496", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("50099", "17496", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("50100", "17496", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("50101", "17496", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("50102", "17496", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("50103", "17496", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("50104", "17496", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("50105", "17496", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("50106", "17496", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50107", "17496", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("50108", "17496", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("50109", "17496", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("50110", "17496", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50111", "17496", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("50112", "17496", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("50113", "17496", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("50114", "17496", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("50115", "17496", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("50116", "17496", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("50117", "17496", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50118", "17496", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("50119", "17496", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("50120", "17496", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50121", "17496", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50122", "17496", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("50123", "17496", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("50124", "17496", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("50125", "17496", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("50126", "17496", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50127", "17496", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50128", "17496", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50129", "17496", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50130", "17496", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50131", "17496", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("50132", "17496", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("50133", "17496", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("50134", "17496", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("50135", "17496", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("50136", "17496", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("50137", "17496", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("50138", "17496", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("50139", "17496", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("50140", "17496", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("50141", "17496", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("50142", "17496", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("50143", "17496", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("50144", "17496", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50145", "17500", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("50146", "17500", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("50147", "17500", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("50148", "17500", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50149", "17500", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("50150", "17500", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("50151", "17500", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("50152", "17500", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("50153", "17500", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("50154", "17500", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("50155", "17500", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("50156", "17500", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("50157", "17500", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50158", "17500", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("50159", "17500", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50160", "17500", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("50161", "17500", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50162", "17500", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50163", "17500", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50164", "17500", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50165", "17500", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50166", "17500", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50167", "17500", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50168", "17500", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("50169", "17500", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("50170", "17500", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("50171", "17500", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("50172", "17500", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("50173", "17500", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("50174", "17500", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("50175", "17500", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("50176", "17500", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50177", "17500", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("50178", "17500", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50179", "17500", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("50180", "17500", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("50181", "17500", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("50182", "17500", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("50183", "17500", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50184", "17500", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50185", "17500", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50186", "17500", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50187", "17500", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50188", "17500", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50189", "17500", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50190", "17500", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50191", "17500", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50192", "17500", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50193", "17500", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50194", "17500", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("50195", "17500", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50196", "17500", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("50197", "17500", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("50198", "17500", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50199", "17500", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50200", "17500", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50201", "17500", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50202", "17500", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("50203", "17500", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50204", "17500", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("50205", "17500", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("50206", "17500", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("50207", "17500", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("50208", "17500", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50209", "17500", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("50210", "17500", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50211", "17500", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50212", "17500", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("50213", "17500", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50214", "17500", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("50215", "17500", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("50216", "17500", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("50217", "17500", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("50218", "17500", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50219", "17500", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50220", "17500", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50221", "17500", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50222", "17500", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("50223", "17500", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50224", "17500", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("50225", "17500", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("50226", "17500", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("50227", "17500", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("50228", "17500", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("50229", "17500", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("50230", "17500", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("50231", "17500", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("50232", "17500", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("50233", "17500", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("50234", "17500", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("50235", "17500", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("50236", "17500", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50237", "17500", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50238", "17500", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50239", "17500", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50240", "17500", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50241", "17500", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("50242", "17500", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("50243", "17500", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("50244", "17500", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("50245", "17500", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("50246", "17500", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("50247", "17500", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("50248", "17500", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("50249", "17500", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50250", "17500", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("50251", "17500", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("50252", "17500", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("50253", "17500", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50254", "17500", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("50255", "17500", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50256", "17500", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50257", "17500", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50258", "17500", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50259", "17500", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50260", "17500", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50261", "17500", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("50262", "17500", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("50263", "17500", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50264", "17500", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50265", "17500", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50266", "17500", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50267", "17500", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50268", "17500", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("50269", "17500", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50270", "17500", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("50271", "17500", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("50272", "17500", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50273", "17500", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("50274", "17500", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("50275", "17500", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("50276", "17500", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("50277", "17500", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("50278", "17500", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("50279", "17500", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("50280", "17500", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("50281", "17500", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("50282", "17500", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("50283", "17500", "price", "");
INSERT INTO `wp_postmeta` VALUES("50284", "17500", "value", "");
INSERT INTO `wp_postmeta` VALUES("50285", "17500", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("50286", "17500", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("50287", "17500", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("50288", "17500", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("50289", "17500", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("50290", "17500", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("50291", "17500", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("50292", "17500", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("50293", "17500", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("50294", "17500", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("50295", "17500", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("50296", "17500", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("50297", "17500", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("50298", "17500", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("50299", "17500", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("50300", "17500", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("50301", "17500", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("50302", "17500", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("50303", "17500", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("50304", "17500", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("50305", "17500", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50306", "17500", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("50307", "17500", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("50308", "17500", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("50309", "17500", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50310", "17500", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("50311", "17500", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("50312", "17500", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("50313", "17500", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("50314", "17500", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("50315", "17500", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("50316", "17500", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50317", "17500", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("50318", "17500", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("50319", "17500", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50320", "17500", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50321", "17500", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("50322", "17500", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("50323", "17500", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("50324", "17500", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("50325", "17500", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50326", "17500", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50327", "17500", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50328", "17500", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50329", "17500", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50330", "17500", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("50331", "17500", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("50332", "17500", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("50333", "17500", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("50334", "17500", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("50335", "17500", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("50336", "17500", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("50337", "17500", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("50338", "17500", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("50339", "17500", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("50340", "17500", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("50341", "17500", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("50342", "17500", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("50343", "17500", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50344", "17500", "_edit_lock", "1449592107:1");
INSERT INTO `wp_postmeta` VALUES("50345", "17503", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("50346", "17503", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("50347", "17503", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("50348", "17503", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50349", "17503", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("50350", "17503", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("50351", "17503", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("50352", "17503", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("50353", "17503", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("50354", "17503", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("50355", "17503", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("50356", "17503", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("50357", "17503", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50358", "17503", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("50359", "17503", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50360", "17503", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("50361", "17503", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50362", "17503", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50363", "17503", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50364", "17503", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50365", "17503", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50366", "17503", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50367", "17503", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50368", "17503", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("50369", "17503", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("50370", "17503", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("50371", "17503", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("50372", "17503", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("50373", "17503", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("50374", "17503", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("50375", "17503", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("50376", "17503", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50377", "17503", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("50378", "17503", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50379", "17503", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("50380", "17503", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("50381", "17503", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("50382", "17503", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("50383", "17503", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50384", "17503", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50385", "17503", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50386", "17503", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50387", "17503", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50388", "17503", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50389", "17503", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50390", "17503", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50391", "17503", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50392", "17503", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50393", "17503", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50394", "17503", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("50395", "17503", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50396", "17503", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("50397", "17503", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("50398", "17503", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50399", "17503", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50400", "17503", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50401", "17503", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50402", "17503", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("50403", "17503", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50404", "17503", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("50405", "17503", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("50406", "17503", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("50407", "17503", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("50408", "17503", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50409", "17503", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("50410", "17503", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50411", "17503", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50412", "17503", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("50413", "17503", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50414", "17503", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("50415", "17503", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("50416", "17503", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("50417", "17503", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("50418", "17503", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50419", "17503", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50420", "17503", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50421", "17503", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50422", "17503", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("50423", "17503", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50424", "17503", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("50425", "17503", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("50426", "17503", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("50427", "17503", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("50428", "17503", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("50429", "17503", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("50430", "17503", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("50431", "17503", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("50432", "17503", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("50433", "17503", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("50434", "17503", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("50435", "17503", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("50436", "17503", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50437", "17503", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50438", "17503", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50439", "17503", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50440", "17503", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50441", "17503", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("50442", "17503", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("50443", "17503", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("50444", "17503", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("50445", "17503", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("50446", "17503", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("50447", "17503", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("50448", "17503", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("50449", "17503", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50450", "17503", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("50451", "17503", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("50452", "17503", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("50453", "17503", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50454", "17503", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("50455", "17503", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50456", "17503", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50457", "17503", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50458", "17503", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50459", "17503", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50460", "17503", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50461", "17503", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("50462", "17503", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("50463", "17503", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50464", "17503", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50465", "17503", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50466", "17503", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50467", "17503", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50468", "17503", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("50469", "17503", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50470", "17503", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("50471", "17503", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("50472", "17503", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50473", "17503", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("50474", "17503", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("50475", "17503", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("50476", "17503", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("50477", "17503", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("50478", "17503", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("50479", "17503", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("50480", "17503", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("50481", "17503", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("50482", "17503", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("50483", "17503", "price", "");
INSERT INTO `wp_postmeta` VALUES("50484", "17503", "value", "");
INSERT INTO `wp_postmeta` VALUES("50485", "17503", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("50486", "17503", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("50487", "17503", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("50488", "17503", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("50489", "17503", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("50490", "17503", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("50491", "17503", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("50492", "17503", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("50493", "17503", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("50494", "17503", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("50495", "17503", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("50496", "17503", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("50497", "17503", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("50498", "17503", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("50499", "17503", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("50500", "17503", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("50501", "17503", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("50502", "17503", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("50503", "17503", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("50504", "17503", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("50505", "17503", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50506", "17503", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("50507", "17503", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("50508", "17503", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("50509", "17503", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50510", "17503", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("50511", "17503", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("50512", "17503", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("50513", "17503", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("50514", "17503", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("50515", "17503", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("50516", "17503", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50517", "17503", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("50518", "17503", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("50519", "17503", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50520", "17503", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50521", "17503", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("50522", "17503", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("50523", "17503", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("50524", "17503", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("50525", "17503", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50526", "17503", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50527", "17503", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50528", "17503", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50529", "17503", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50530", "17503", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("50531", "17503", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("50532", "17503", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("50533", "17503", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("50534", "17503", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("50535", "17503", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("50536", "17503", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("50537", "17503", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("50538", "17503", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("50539", "17503", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("50540", "17503", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("50541", "17503", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("50542", "17503", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("50543", "17503", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50544", "17503", "_edit_lock", "1449592501:1");
INSERT INTO `wp_postmeta` VALUES("50545", "17507", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("50546", "17507", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("50547", "17507", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("50548", "17507", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50549", "17507", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("50550", "17507", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("50551", "17507", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("50552", "17507", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("50553", "17507", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("50554", "17507", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("50555", "17507", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("50556", "17507", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("50557", "17507", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50558", "17507", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("50559", "17507", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50560", "17507", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("50561", "17507", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50562", "17507", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50563", "17507", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50564", "17507", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50565", "17507", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50566", "17507", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50567", "17507", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50568", "17507", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("50569", "17507", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("50570", "17507", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("50571", "17507", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("50572", "17507", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("50573", "17507", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("50574", "17507", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("50575", "17507", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("50576", "17507", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50577", "17507", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("50578", "17507", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50579", "17507", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("50580", "17507", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("50581", "17507", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("50582", "17507", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("50583", "17507", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50584", "17507", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50585", "17507", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50586", "17507", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50587", "17507", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50588", "17507", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50589", "17507", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50590", "17507", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50591", "17507", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50592", "17507", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50593", "17507", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50594", "17507", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("50595", "17507", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50596", "17507", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("50597", "17507", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("50598", "17507", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("50599", "17507", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("50600", "17507", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("50601", "17507", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("50602", "17507", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("50603", "17507", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("50604", "17507", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("50605", "17507", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("50606", "17507", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("50607", "17507", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("50608", "17507", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50609", "17507", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("50610", "17507", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50611", "17507", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50612", "17507", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("50613", "17507", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50614", "17507", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("50615", "17507", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("50616", "17507", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("50617", "17507", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("50618", "17507", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50619", "17507", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50620", "17507", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50621", "17507", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50622", "17507", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("50623", "17507", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("50624", "17507", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("50625", "17507", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("50626", "17507", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("50627", "17507", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("50628", "17507", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("50629", "17507", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("50630", "17507", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("50631", "17507", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("50632", "17507", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("50633", "17507", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("50634", "17507", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("50635", "17507", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("50636", "17507", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50637", "17507", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50638", "17507", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50639", "17507", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50640", "17507", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50641", "17507", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("50642", "17507", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("50643", "17507", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("50644", "17507", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("50645", "17507", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("50646", "17507", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("50647", "17507", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("50648", "17507", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("50649", "17507", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("50650", "17507", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("50651", "17507", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("50652", "17507", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("50653", "17507", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50654", "17507", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("50655", "17507", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50656", "17507", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("50657", "17507", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("50658", "17507", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("50659", "17507", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("50660", "17507", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("50661", "17507", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("50662", "17507", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("50663", "17507", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50664", "17507", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50665", "17507", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("50666", "17507", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50667", "17507", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("50668", "17507", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("50669", "17507", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50670", "17507", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("50671", "17507", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("50672", "17507", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("50673", "17507", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("50674", "17507", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("50675", "17507", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("50676", "17507", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("50677", "17507", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("50678", "17507", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("50679", "17507", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("50680", "17507", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("50681", "17507", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("50682", "17507", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("50683", "17507", "price", "");
INSERT INTO `wp_postmeta` VALUES("50684", "17507", "value", "");
INSERT INTO `wp_postmeta` VALUES("50685", "17507", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("50686", "17507", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("50687", "17507", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("50688", "17507", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("50689", "17507", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("50690", "17507", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("50691", "17507", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("50692", "17507", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("50693", "17507", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("50694", "17507", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("50695", "17507", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("50696", "17507", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("50697", "17507", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("50698", "17507", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("50699", "17507", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("50700", "17507", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("50701", "17507", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("50702", "17507", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("50703", "17507", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("50704", "17507", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("50705", "17507", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50706", "17507", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("50707", "17507", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("50708", "17507", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("50709", "17507", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50710", "17507", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("50711", "17507", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("50712", "17507", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("50713", "17507", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("50714", "17507", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("50715", "17507", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("50716", "17507", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50717", "17507", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("50718", "17507", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("50719", "17507", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50720", "17507", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50721", "17507", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("50722", "17507", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("50723", "17507", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("50724", "17507", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("50725", "17507", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50726", "17507", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50727", "17507", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50728", "17507", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50729", "17507", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50730", "17507", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("50731", "17507", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("50732", "17507", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("50733", "17507", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("50734", "17507", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("50735", "17507", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("50736", "17507", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("50737", "17507", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("50738", "17507", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("50739", "17507", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("50740", "17507", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("50741", "17507", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("50742", "17507", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("50743", "17507", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50744", "17507", "_edit_lock", "1451402340:1");
INSERT INTO `wp_postmeta` VALUES("50745", "17512", "_menu_item_type", "custom");
INSERT INTO `wp_postmeta` VALUES("50746", "17512", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("50747", "17512", "_menu_item_object_id", "17512");
INSERT INTO `wp_postmeta` VALUES("50748", "17512", "_menu_item_object", "custom");
INSERT INTO `wp_postmeta` VALUES("50749", "17512", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("50750", "17512", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("50751", "17512", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("50752", "17512", "_menu_item_url", "#");
INSERT INTO `wp_postmeta` VALUES("50768", "17512", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50754", "17512", "_menu_item_submenu_type", "columns2");
INSERT INTO `wp_postmeta` VALUES("50755", "17512", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("50756", "17512", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("50757", "17512", "_menu_item_column_width", "350");
INSERT INTO `wp_postmeta` VALUES("50758", "17512", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("50759", "17512", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("50760", "17512", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("50761", "17512", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("50762", "17512", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("50763", "17512", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("50764", "17512", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("50765", "17512", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("50766", "17512", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("50767", "17512", "_menu_item_el_class", "two-columns");
INSERT INTO `wp_postmeta` VALUES("50900", "9032", "_edit_lock", "1449841457:1");
INSERT INTO `wp_postmeta` VALUES("50901", "17523", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("50902", "17523", "_edit_lock", "1449842285:1");
INSERT INTO `wp_postmeta` VALUES("50903", "17523", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50904", "17523", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("50905", "17523", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("50906", "17523", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50907", "17523", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("50908", "17523", "price", "199.99");
INSERT INTO `wp_postmeta` VALUES("50909", "17523", "value", "Month");
INSERT INTO `wp_postmeta` VALUES("50910", "17523", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("50911", "17523", "option_2", "300GB Space amount");
INSERT INTO `wp_postmeta` VALUES("50912", "17523", "option_3", "70GB Bandwidth");
INSERT INTO `wp_postmeta` VALUES("50913", "17523", "option_4", "10 Domains");
INSERT INTO `wp_postmeta` VALUES("50914", "17523", "option_5", "Unlimited data transfer");
INSERT INTO `wp_postmeta` VALUES("50915", "17523", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("50916", "17523", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("50917", "17523", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("50918", "17523", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("50919", "17523", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("50920", "17523", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("50921", "17523", "button_text", "Sign-up");
INSERT INTO `wp_postmeta` VALUES("50922", "17523", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("50923", "17523", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("50924", "17523", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("50925", "17523", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("50926", "17523", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("50927", "17523", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("50928", "17523", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("50929", "17523", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("50930", "17523", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50931", "17523", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("50932", "17523", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("50933", "17523", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("50934", "17523", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50935", "17523", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("50936", "17523", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("50937", "17523", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("50938", "17523", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("50939", "17523", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("50940", "17523", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("50941", "17523", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50942", "17523", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("50943", "17523", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("50944", "17523", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50945", "17523", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50946", "17523", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("50947", "17523", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("50948", "17523", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("50949", "17523", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("50950", "17523", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50951", "17523", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50952", "17523", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50953", "17523", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50954", "17523", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50955", "17523", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("50956", "17523", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("50957", "17523", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("50958", "17523", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("50959", "17523", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("50960", "17523", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("50961", "17523", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("50962", "17523", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("50963", "17523", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("50964", "17523", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("50965", "17523", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("50966", "17523", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("50967", "17523", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("50968", "17523", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("50969", "9032", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("50970", "9032", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("50971", "9032", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("50972", "9032", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50973", "9032", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("50974", "9032", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("50975", "9032", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("50976", "9032", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("50977", "9032", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("50978", "9032", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("50979", "9032", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("50980", "9032", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("50981", "9032", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("50982", "9032", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("50983", "9032", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("50984", "9032", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50985", "9032", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50986", "9032", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50987", "9032", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50988", "9032", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("50989", "9032", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("50990", "9032", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("50991", "9032", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("50992", "9032", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("50993", "9032", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("50994", "9032", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("50995", "9032", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("50996", "9032", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("50997", "9032", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("50998", "9032", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("50999", "9032", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("51000", "9032", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("51001", "9032", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("51002", "9032", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("51003", "9036", "_edit_lock", "1449841573:1");
INSERT INTO `wp_postmeta` VALUES("51004", "9038", "_edit_lock", "1449842506:1");
INSERT INTO `wp_postmeta` VALUES("51005", "9036", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51006", "9036", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51007", "9036", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("51008", "9036", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("51009", "9036", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51010", "9036", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51011", "9036", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("51012", "9036", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("51013", "9036", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("51014", "9036", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("51015", "9036", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51016", "9036", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51017", "9036", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51018", "9036", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51019", "9036", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51020", "9036", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("51021", "9036", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("51022", "9036", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("51023", "9036", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("51024", "9036", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("51025", "9036", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("51026", "9036", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("51027", "9036", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("51028", "9036", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("51029", "9036", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("51030", "9036", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("51031", "9036", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("51032", "9036", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("51033", "9036", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("51034", "9038", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51035", "9038", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("51036", "9038", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("51037", "9038", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51038", "9038", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("51039", "9038", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("51040", "9038", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51041", "9038", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("51042", "9038", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("51043", "9038", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51044", "9038", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51045", "9038", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("51046", "9038", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("51047", "9038", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("51048", "9038", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("51049", "9038", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51050", "9038", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51051", "9038", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51052", "9038", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51053", "9038", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51054", "9038", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("51055", "9038", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("51056", "9038", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("51057", "9038", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("51058", "9038", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("51059", "9038", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("51060", "9038", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("51061", "9038", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("51062", "9038", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("51063", "9038", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("51064", "9038", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("51065", "9038", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("51066", "9038", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("51067", "9038", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("51068", "9039", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51069", "9039", "cs_video_link_webm", "");
INSERT INTO `wp_postmeta` VALUES("51070", "9039", "cs_video_link_ogg", "");
INSERT INTO `wp_postmeta` VALUES("51071", "9039", "cs_video_link_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51072", "9039", "cs_video_preview", "");
INSERT INTO `wp_postmeta` VALUES("51073", "9039", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("51074", "9039", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51075", "9039", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("51076", "9039", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("51077", "9039", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51078", "9039", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51079", "9039", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("51080", "9039", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("51081", "9039", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("51082", "9039", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("51083", "9039", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51084", "9039", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51085", "9039", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51086", "9039", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51087", "9039", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51088", "9039", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("51089", "9039", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("51090", "9039", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("51091", "9039", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("51092", "9039", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("51093", "9039", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("51094", "9039", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("51095", "9039", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("51096", "9039", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("51097", "9039", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("51098", "9039", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("51099", "9039", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("51100", "9039", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("51101", "9039", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("51102", "17529", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("51103", "17529", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("51104", "17529", "_menu_item_object_id", "1482");
INSERT INTO `wp_postmeta` VALUES("51105", "17529", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("51106", "17529", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("51107", "17529", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("51108", "17529", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("51109", "17529", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("51125", "17529", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51111", "17529", "_menu_item_submenu_type", "standard");
INSERT INTO `wp_postmeta` VALUES("51112", "17529", "_menu_item_dropdown", "autodrop_submenu");
INSERT INTO `wp_postmeta` VALUES("51113", "17529", "_menu_item_widget_area", "");
INSERT INTO `wp_postmeta` VALUES("51114", "17529", "_menu_item_column_width", "");
INSERT INTO `wp_postmeta` VALUES("51115", "17529", "_menu_item_group", "no_group");
INSERT INTO `wp_postmeta` VALUES("51116", "17529", "_menu_item_hide_link", "");
INSERT INTO `wp_postmeta` VALUES("51117", "17529", "_menu_item_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51118", "17529", "_menu_item_bg_image_attachment", "scroll");
INSERT INTO `wp_postmeta` VALUES("51119", "17529", "_menu_item_bg_image_size", "auto");
INSERT INTO `wp_postmeta` VALUES("51120", "17529", "_menu_item_bg_image_position", "center");
INSERT INTO `wp_postmeta` VALUES("51121", "17529", "_menu_item_bg_image_repeat", "repeat");
INSERT INTO `wp_postmeta` VALUES("51122", "17529", "_menu_item_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51123", "17529", "_menu_item_menu_icon", "");
INSERT INTO `wp_postmeta` VALUES("51124", "17529", "_menu_item_el_class", "");
INSERT INTO `wp_postmeta` VALUES("51126", "17530", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("51127", "17530", "_edit_lock", "1449898410:1");
INSERT INTO `wp_postmeta` VALUES("51128", "17530", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("51129", "17530", "_wpb_vc_js_status", "false");
INSERT INTO `wp_postmeta` VALUES("51130", "17530", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51131", "17530", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("51132", "17530", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("51133", "17530", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("51134", "17530", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("51135", "17530", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("51136", "17530", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("51137", "17530", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("51138", "17530", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("51139", "17530", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51140", "17530", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("51141", "17530", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51142", "17530", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("51143", "17530", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51144", "17530", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51145", "17530", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51146", "17530", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51147", "17530", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51148", "17530", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51149", "17530", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51150", "17530", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("51151", "17530", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("51152", "17530", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("51153", "17530", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("51154", "17530", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("51155", "17530", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("51156", "17530", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("51157", "17530", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("51158", "17530", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("51159", "17530", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("51160", "17530", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("51161", "17530", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("51162", "17530", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("51163", "17530", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("51164", "17530", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("51165", "17530", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51166", "17530", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("51167", "17530", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("51168", "17530", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("51169", "17530", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51170", "17530", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51171", "17530", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51172", "17530", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51173", "17530", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51174", "17530", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51175", "17530", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("51176", "17530", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("51177", "17530", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51178", "17530", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("51179", "17530", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("51180", "17530", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51181", "17530", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("51182", "17530", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("51183", "17530", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("51184", "17530", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("51185", "17530", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("51186", "17530", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("51187", "17530", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("51188", "17530", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("51189", "17530", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("51190", "17530", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51191", "17530", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("51192", "17530", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51193", "17530", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51194", "17530", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("51195", "17530", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51196", "17530", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("51197", "17530", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("51198", "17530", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("51199", "17530", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("51200", "17530", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51201", "17530", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51202", "17530", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51203", "17530", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51204", "17530", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("51205", "17530", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51206", "17530", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("51207", "17530", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("51208", "17530", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("51209", "17530", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("51210", "17530", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("51211", "17530", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("51212", "17530", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("51213", "17530", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("51214", "17530", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("51215", "17530", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("51216", "17530", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("51217", "17530", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("51218", "17530", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51219", "17530", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51220", "17530", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51221", "17530", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51222", "17530", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("51223", "17530", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("51224", "17530", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("51225", "17530", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("51226", "17530", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("51227", "17530", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("51228", "17530", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("51229", "17530", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("51230", "17530", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("51231", "17530", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("51232", "17530", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("51233", "17530", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("51234", "17530", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("51235", "17530", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51236", "17530", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("51237", "17530", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51238", "17530", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51239", "17530", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51240", "17530", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51241", "17530", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51242", "17530", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("51243", "17530", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("51244", "17530", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("51245", "17530", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("51246", "17530", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("51247", "17530", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("51248", "17530", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("51249", "17530", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("51250", "17530", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("51251", "17530", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51252", "17530", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("51253", "17530", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("51254", "17530", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51255", "17530", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("51256", "17530", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("51257", "17530", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("51258", "17530", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("51259", "17530", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("51260", "17530", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("51261", "17530", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("51262", "17530", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("51263", "17530", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("51264", "17530", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("51265", "17530", "price", "");
INSERT INTO `wp_postmeta` VALUES("51266", "17530", "value", "");
INSERT INTO `wp_postmeta` VALUES("51267", "17530", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("51268", "17530", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("51269", "17530", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("51270", "17530", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("51271", "17530", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("51272", "17530", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("51273", "17530", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("51274", "17530", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("51275", "17530", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("51276", "17530", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("51277", "17530", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("51278", "17530", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("51279", "17530", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("51280", "17530", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("51281", "17530", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("51282", "17530", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("51283", "17530", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("51284", "17530", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("51285", "17530", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("51286", "17530", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("51287", "17530", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51288", "17530", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("51289", "17530", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("51290", "17530", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("51291", "17530", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51292", "17530", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("51293", "17530", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("51294", "17530", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("51295", "17530", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("51296", "17530", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("51297", "17530", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("51298", "17530", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51299", "17530", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("51300", "17530", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("51301", "17530", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51302", "17530", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51303", "17530", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("51304", "17530", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("51305", "17530", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("51306", "17530", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("51307", "17530", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51308", "17530", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51309", "17530", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51310", "17530", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51311", "17530", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51312", "17530", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("51313", "17530", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("51314", "17530", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("51315", "17530", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("51316", "17530", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("51317", "17530", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("51318", "17530", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("51319", "17530", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("51320", "17530", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("51321", "17530", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("51322", "17530", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("51323", "17530", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("51324", "17530", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("51325", "17530", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("51326", "17534", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("51327", "17534", "_edit_lock", "1452092214:1");
INSERT INTO `wp_postmeta` VALUES("51328", "17534", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("51329", "17534", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("51330", "17534", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("51331", "17534", "_wpb_shortcodes_custom_css", ".vc_custom_1448537228856{padding-bottom: 50px !important;}.vc_custom_1448537228856{padding-bottom: 50px !important;}.vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}.vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}.vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}.vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}.vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}.vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}.vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}.vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}.vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}.vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}.vc_custom_1450281676642{padding-top: 30px !important;}.vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}.vc_custom_1449265044803{padding-bottom: 40px !important;}.vc_custom_1452091239833{padding-bottom: 60px !important;}");
INSERT INTO `wp_postmeta` VALUES("51332", "17534", "cs_layout", "1");
INSERT INTO `wp_postmeta` VALUES("51333", "17534", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("51334", "17534", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("51335", "17534", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("51336", "17534", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("51337", "17534", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("51338", "17534", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("51339", "17534", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("51340", "17534", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51341", "17534", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("51342", "17534", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51343", "17534", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("51344", "17534", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51345", "17534", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51346", "17534", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51347", "17534", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51348", "17534", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51349", "17534", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51350", "17534", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51351", "17534", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("51352", "17534", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("51353", "17534", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("51354", "17534", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("51355", "17534", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("51356", "17534", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("51357", "17534", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("51358", "17534", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("51359", "17534", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("51360", "17534", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("51361", "17534", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("51362", "17534", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("51363", "17534", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("51364", "17534", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("51365", "17534", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("51366", "17534", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51367", "17534", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("51368", "17534", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("51369", "17534", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("51370", "17534", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51371", "17534", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51372", "17534", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51373", "17534", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51374", "17534", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51375", "17534", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51376", "17534", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("51377", "17534", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("51378", "17534", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51379", "17534", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("51380", "17534", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("51381", "17534", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("51382", "17534", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("51383", "17534", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("51384", "17534", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("51385", "17534", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("51386", "17534", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("51387", "17534", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("51388", "17534", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("51389", "17534", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("51390", "17534", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("51391", "17534", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51392", "17534", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("51393", "17534", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51394", "17534", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51395", "17534", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("51396", "17534", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51397", "17534", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("51398", "17534", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("51399", "17534", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("51400", "17534", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("51401", "17534", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51402", "17534", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51403", "17534", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51404", "17534", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51405", "17534", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("51406", "17534", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("51407", "17534", "cs_page_title_setting", "1");
INSERT INTO `wp_postmeta` VALUES("51408", "17534", "cs_page_title_enable", "0");
INSERT INTO `wp_postmeta` VALUES("51409", "17534", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("51410", "17534", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("51411", "17534", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("51412", "17534", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("51413", "17534", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("51414", "17534", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("51415", "17534", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("51416", "17534", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("51417", "17534", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("51418", "17534", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("51419", "17534", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51420", "17534", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51421", "17534", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51422", "17534", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51423", "17534", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("51424", "17534", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("51425", "17534", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("51426", "17534", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("51427", "17534", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("51428", "17534", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("51429", "17534", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("51430", "17534", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("51431", "17534", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("51432", "17534", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("51433", "17534", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("51434", "17534", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("51435", "17534", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("51436", "17534", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51437", "17534", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("51438", "17534", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("51439", "17534", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("51440", "17534", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("51441", "17534", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("51442", "17534", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("51443", "17534", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("51444", "17534", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("51445", "17534", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("51446", "17534", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("51447", "17534", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("51448", "17534", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("51449", "17534", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("51450", "17534", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("51451", "17534", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("51452", "17534", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("51453", "17534", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("51454", "17534", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("51455", "17534", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("51456", "17534", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("51457", "17534", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("51458", "17534", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("51459", "17534", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("51460", "17534", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("51461", "17534", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("51462", "17534", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("51463", "17534", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("51464", "17534", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("51465", "17534", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("51466", "17534", "price", "");
INSERT INTO `wp_postmeta` VALUES("51467", "17534", "value", "");
INSERT INTO `wp_postmeta` VALUES("51468", "17534", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("51469", "17534", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("51470", "17534", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("51471", "17534", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("51472", "17534", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("51473", "17534", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("51474", "17534", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("51475", "17534", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("51476", "17534", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("51477", "17534", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("51478", "17534", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("51479", "17534", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("51480", "17534", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("51481", "17534", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("51482", "17534", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("51483", "17534", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("51484", "17534", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("51485", "17534", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("51486", "17534", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("51487", "17534", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("51488", "17534", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51489", "17534", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("51490", "17534", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("51491", "17534", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("51492", "17534", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51493", "17534", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("51494", "17534", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("51495", "17534", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("51496", "17534", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("51497", "17534", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("51498", "17534", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("51499", "17534", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("51500", "17534", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("51501", "17534", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("51502", "17534", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("51503", "17534", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("51504", "17534", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("51505", "17534", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("51506", "17534", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("51507", "17534", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("51508", "17534", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51509", "17534", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51510", "17534", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51511", "17534", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51512", "17534", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("51513", "17534", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("51514", "17534", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("51515", "17534", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("51516", "17534", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("51517", "17534", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("51518", "17534", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("51519", "17534", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("51520", "17534", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("51521", "17534", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("51522", "17534", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("51523", "17534", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("51524", "17534", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("51525", "17534", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("51526", "17534", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("51527", "17538", "_wp_attached_file", "2015/12/slider-2.jpg");
INSERT INTO `wp_postmeta` VALUES("51528", "17538", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2015/12/slider-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"slider-2-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider-2-1170x457.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:20:\"slider-2-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"slider-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"slider-2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("51529", "17539", "_wp_attached_file", "2015/12/slider-3.jpg");
INSERT INTO `wp_postmeta` VALUES("51530", "17539", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:20:\"2015/12/slider-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-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:20:\"slider-3-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"slider-3-1170x457.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:20:\"slider-3-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"slider-3-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"slider-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"slider-3-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("51533", "17542", "_wp_attached_file", "2015/12/portfolio-10.jpg");
INSERT INTO `wp_postmeta` VALUES("51534", "17542", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2015/12/portfolio-10.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-10-150x150.jpg\";s:5:\"width\";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:\"portfolio-10-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:24:\"portfolio-10-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"portfolio-10-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"portfolio-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"portfolio-10-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}");
INSERT INTO `wp_postmeta` VALUES("53423", "1015", "price", "");
INSERT INTO `wp_postmeta` VALUES("53422", "1015", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53421", "1011", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53420", "1011", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53414", "1011", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53415", "1011", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53416", "1011", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53417", "1011", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53418", "1011", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53419", "1011", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53595", "629", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53596", "629", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53594", "629", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53593", "625", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53592", "625", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53591", "625", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53590", "625", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53589", "625", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53588", "625", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53587", "625", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53586", "615", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53585", "615", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53584", "615", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53583", "615", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53582", "615", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53581", "615", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53576", "630", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53577", "630", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53578", "630", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53579", "630", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53580", "615", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53610", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53609", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53607", "396", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53606", "396", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53608", "396", "_thumbnail_id", "15786");
INSERT INTO `wp_postmeta` VALUES("53413", "1011", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53412", "1011", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53366", "1027", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53367", "1027", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53365", "1027", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53364", "1027", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53363", "1027", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53362", "1027", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53361", "1027", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53360", "1027", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53359", "1027", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53358", "1027", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53357", "1027", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53356", "1027", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53355", "1027", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53354", "1027", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53353", "1027", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53352", "1027", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53351", "1027", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53350", "1027", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53349", "1027", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53348", "1027", "value", "");
INSERT INTO `wp_postmeta` VALUES("53347", "1027", "price", "");
INSERT INTO `wp_postmeta` VALUES("53346", "1027", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53345", "1031", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53344", "1031", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53343", "1031", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53611", "17741", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("53612", "17741", "_edit_lock", "1452674054:1");
INSERT INTO `wp_postmeta` VALUES("53613", "17741", "_thumbnail_id", "15431");
INSERT INTO `wp_postmeta` VALUES("53614", "17741", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53615", "17741", "price", "");
INSERT INTO `wp_postmeta` VALUES("53616", "17741", "value", "");
INSERT INTO `wp_postmeta` VALUES("53617", "17741", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53618", "17741", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53619", "17741", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53620", "17741", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53621", "17741", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53622", "17741", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53623", "17741", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53624", "17741", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53625", "17741", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53626", "17741", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53627", "17741", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53628", "17741", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53629", "17741", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53630", "17741", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53631", "17741", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53632", "17741", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53633", "17741", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53634", "17741", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53635", "17741", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53636", "17741", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53637", "17741", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53638", "17741", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53639", "17741", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53640", "17741", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53641", "17741", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53642", "17741", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53643", "17741", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53644", "17741", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53645", "17741", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53646", "17741", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53647", "17741", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("53648", "17741", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("53649", "17741", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("53650", "17741", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("53651", "17741", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53652", "17741", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53653", "17741", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53654", "17741", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("53655", "17741", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("53656", "17741", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53657", "17741", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53658", "17741", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53659", "17741", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53660", "17741", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53661", "17741", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53662", "17741", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("53663", "17741", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("53664", "17741", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("53665", "17741", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("53666", "17741", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("53667", "17741", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("53668", "17741", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("53669", "17741", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("53670", "17741", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("53671", "17741", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("53672", "17741", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("53673", "17741", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("53674", "17741", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53675", "17741", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53676", "1113", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53677", "1113", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53678", "1109", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53679", "1109", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53680", "1106", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53681", "1106", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53682", "76", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53683", "76", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53684", "664", "_thumbnail_id", "17415");
INSERT INTO `wp_postmeta` VALUES("53685", "664", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53686", "664", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53689", "17748", "_wp_attached_file", "2016/09/SLIDE1.jpg");
INSERT INTO `wp_postmeta` VALUES("53690", "17748", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1039;s:4:\"file\";s:18:\"2016/09/SLIDE1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"SLIDE1-150x150.jpg\";s:5:\"width\";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:\"SLIDE1-600x325.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"SLIDE1-768x416.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"SLIDE1-1170x633.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:633;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:18:\"SLIDE1-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("53691", "17749", "_wp_attached_file", "2016/09/SLIDE3.jpg");
INSERT INTO `wp_postmeta` VALUES("53692", "17749", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2016/09/SLIDE3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"SLIDE3-150x150.jpg\";s:5:\"width\";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:\"SLIDE3-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"SLIDE3-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"SLIDE3-1170x457.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:18:\"SLIDE3-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("53693", "17750", "_wp_attached_file", "2016/09/SLIDE2.jpg");
INSERT INTO `wp_postmeta` VALUES("53694", "17750", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2016/09/SLIDE2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"SLIDE2-150x150.jpg\";s:5:\"width\";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:\"SLIDE2-600x234.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"SLIDE2-768x300.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"SLIDE2-1170x457.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:18:\"SLIDE2-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("53695", "17752", "_form", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("53696", "17752", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:34:\"[your-name] <phuongk3a1@gmail.com>\";s:4:\"body\";s:173:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:19:\"phuongk3a@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("53697", "17752", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"Mdeal Theme <wordpress@localhost/mdeal2>\";s:4:\"body\";s:115:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("53698", "17752", "_messages", "a:22:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}");
INSERT INTO `wp_postmeta` VALUES("53699", "17752", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("53700", "17752", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("53701", "17752", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53702", "17756", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("53703", "17756", "_edit_lock", "1473483353:1");
INSERT INTO `wp_postmeta` VALUES("53704", "17756", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("53705", "17756", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("53706", "17756", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53707", "17756", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("53708", "17756", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("53709", "17756", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("53710", "17756", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("53711", "17756", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("53712", "17756", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("53713", "17756", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("53714", "17756", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("53715", "17756", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53716", "17756", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("53717", "17756", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("53718", "17756", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("53719", "17756", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("53720", "17756", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53721", "17756", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("53722", "17756", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("53723", "17756", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("53724", "17756", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("53725", "17756", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("53726", "17756", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("53727", "17756", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("53728", "17756", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("53729", "17756", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("53730", "17756", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("53731", "17756", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("53732", "17756", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("53733", "17756", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("53734", "17756", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("53735", "17756", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("53736", "17756", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("53737", "17756", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("53738", "17756", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("53739", "17756", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("53740", "17756", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("53741", "17756", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("53742", "17756", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("53743", "17756", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("53744", "17756", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("53745", "17756", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53746", "17756", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("53747", "17756", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("53748", "17756", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("53749", "17756", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("53750", "17756", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("53751", "17756", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("53752", "17756", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("53753", "17756", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53754", "17756", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("53755", "17756", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("53756", "17756", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("53757", "17756", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("53758", "17756", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("53759", "17756", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("53760", "17756", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("53761", "17756", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("53762", "17756", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("53763", "17756", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("53764", "17756", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("53765", "17756", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("53766", "17756", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("53767", "17756", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("53768", "17756", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53769", "17756", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("53770", "17756", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("53771", "17756", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("53772", "17756", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("53773", "17756", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("53774", "17756", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("53775", "17756", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("53776", "17756", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53777", "17756", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53778", "17756", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53779", "17756", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53780", "17756", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("53781", "17756", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53782", "17756", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("53783", "17756", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("53784", "17756", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("53785", "17756", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("53786", "17756", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("53787", "17756", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("53788", "17756", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("53789", "17756", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("53790", "17756", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("53791", "17756", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("53792", "17756", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("53793", "17756", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53794", "17756", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("53795", "17756", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("53796", "17756", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("53797", "17756", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("53798", "17756", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("53799", "17756", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53800", "17756", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("53801", "17756", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("53802", "17756", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("53803", "17756", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("53804", "17756", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("53805", "17756", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("53806", "17756", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("53807", "17756", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("53808", "17756", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("53809", "17756", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("53810", "17756", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("53811", "17756", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53812", "17756", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("53813", "17756", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("53814", "17756", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("53815", "17756", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("53816", "17756", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("53817", "17756", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("53818", "17756", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("53819", "17756", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("53820", "17756", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("53821", "17756", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("53822", "17756", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("53823", "17756", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("53824", "17756", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("53825", "17756", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("53826", "17756", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("53827", "17756", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53828", "17756", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("53829", "17756", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("53830", "17756", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("53831", "17756", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("53832", "17756", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("53833", "17756", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("53834", "17756", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("53835", "17756", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("53836", "17756", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("53837", "17756", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("53838", "17756", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("53839", "17756", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("53840", "17756", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("53841", "17756", "price", "");
INSERT INTO `wp_postmeta` VALUES("53842", "17756", "value", "");
INSERT INTO `wp_postmeta` VALUES("53843", "17756", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("53844", "17756", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("53845", "17756", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("53846", "17756", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("53847", "17756", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("53848", "17756", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("53849", "17756", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("53850", "17756", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("53851", "17756", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("53852", "17756", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("53853", "17756", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("53854", "17756", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("53855", "17756", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("53856", "17756", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("53857", "17756", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("53858", "17756", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("53859", "17756", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("53860", "17756", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("53861", "17756", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("53862", "17756", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("53863", "17756", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53864", "17756", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("53865", "17756", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("53866", "17756", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("53867", "17756", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53868", "17756", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("53869", "17756", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("53870", "17756", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("53871", "17756", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("53872", "17756", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("53873", "17756", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("53874", "17756", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("53875", "17756", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("53876", "17756", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("53877", "17756", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53878", "17756", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53879", "17756", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53880", "17756", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("53881", "17756", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("53882", "17756", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53883", "17756", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53884", "17756", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53885", "17756", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53886", "17756", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53887", "17756", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53888", "17756", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("53889", "17756", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("53890", "17756", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("53891", "17756", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("53892", "17756", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("53893", "17756", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("53894", "17756", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("53895", "17756", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("53896", "17756", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("53897", "17756", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("53898", "17756", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("53899", "17756", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("53900", "17756", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53901", "17756", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53902", "1332", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53903", "1332", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53905", "17761", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2862;s:6:\"height\";i:2000;s:4:\"file\";s:29:\"2015/01/Graphic-Designer1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Graphic-Designer1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Graphic-Designer1-600x419.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Graphic-Designer1-768x537.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:537;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Graphic-Designer1-1170x818.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:29:\"Graphic-Designer1-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";d:8;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D70s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1269547230;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"34\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:1:{i:0;s:9:\"383x287_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53959", "17771", "_wp_attached_file", "2015/01/what-do-graphic-designers-do.jpg");
INSERT INTO `wp_postmeta` VALUES("53907", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53908", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53910", "17763", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:5616;s:6:\"height\";i:3744;s:4:\"file\";s:39:\"2015/01/work-stations-plus-espresso.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"work-stations-plus-espresso-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"work-stations-plus-espresso-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"work-stations-plus-espresso-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"work-stations-plus-espresso-1170x780.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:780;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:39:\"work-stations-plus-espresso-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";d:6.29999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1368967951;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:4:{i:0;s:9:\"383x287_c\";i:1;s:9:\"550x420_c\";i:2;s:9:\"420x315_c\";i:3;s:9:\"350x260_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53911", "385", "_thumbnail_id", "17763");
INSERT INTO `wp_postmeta` VALUES("53912", "385", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53913", "385", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53915", "17765", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3463;s:6:\"height\";i:2300;s:4:\"file\";s:26:\"2014/12/graphic-design.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"graphic-design-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"graphic-design-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"graphic-design-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"graphic-design-1170x777.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:777;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:26:\"graphic-design-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:1:{i:0;s:9:\"550x420_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53916", "394", "_thumbnail_id", "17765");
INSERT INTO `wp_postmeta` VALUES("53917", "394", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53918", "394", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53920", "17768", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:526;s:6:\"height\";i:355;s:4:\"file\";s:27:\"2015/01/nicoandlalablog.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"nicoandlalablog-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:27:\"nicoandlalablog-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}s:14:\"resized_images\";a:4:{i:0;s:9:\"383x287_c\";i:1;s:9:\"550x420_c\";i:2;s:9:\"420x315_c\";i:3;s:9:\"350x260_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53921", "839", "_thumbnail_id", "17768");
INSERT INTO `wp_postmeta` VALUES("53922", "839", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53923", "839", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53924", "839", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53925", "839", "cs_post_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("53926", "839", "cs_post_title_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53927", "839", "cs_post_title_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("53928", "839", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("53929", "839", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("53930", "839", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("53931", "839", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("53932", "839", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("53933", "839", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("53934", "839", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("53935", "839", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("53936", "839", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("53937", "839", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("53938", "839", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53939", "839", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53940", "839", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53941", "839", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53942", "839", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("53943", "839", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("53944", "839", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("53945", "839", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("53946", "839", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("53947", "839", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("53948", "839", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("53949", "839", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("53950", "839", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("53951", "839", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("53952", "839", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("53953", "839", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("53954", "839", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("53955", "839", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("53956", "839", "eg_sources_revslider", "");
INSERT INTO `wp_postmeta` VALUES("53957", "839", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53958", "839", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53960", "17771", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:850;s:6:\"height\";i:565;s:4:\"file\";s:40:\"2015/01/what-do-graphic-designers-do.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"what-do-graphic-designers-do-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"what-do-graphic-designers-do-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"what-do-graphic-designers-do-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"woo-thumb\";a:4:{s:4:\"file\";s:40:\"what-do-graphic-designers-do-115x145.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:13:{s:8:\"aperture\";d:1.8000000000000000444089209850062616169452667236328125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:81:\"A handsome young man sitting in front of his computer while looking at the camera\";s:17:\"created_timestamp\";i:1353833472;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:29:\"Enjoying every moment at work\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:39:{i:0;s:5:\"adult\";i:1;s:6:\"career\";i:2;s:6:\"casual\";i:3;s:9:\"caucasian\";i:4;s:8:\"computer\";i:5;s:9:\"copyspace\";i:6;s:8:\"creative\";i:7;s:8:\"designer\";i:8;s:8:\"employee\";i:9;s:16:\"graphic designer\";i:10;s:8:\"handsome\";i:11;s:7:\"indoors\";i:12;s:6:\"inside\";i:13;s:8:\"internet\";i:14;s:3:\"job\";i:15;s:9:\"lifestyle\";i:16;s:4:\"look\";i:17;s:7:\"looking\";i:18;s:17:\"looking at camera\";i:19;s:4:\"male\";i:20;s:3:\"man\";i:21;s:3:\"men\";i:22;s:10:\"occupation\";i:23;s:6:\"office\";i:24;s:3:\"one\";i:25;s:6:\"online\";i:26;s:6:\"people\";i:27;s:6:\"person\";i:28;s:8:\"portrait\";i:29;s:5:\"relax\";i:30;s:10:\"relaxation\";i:31;s:8:\"relaxing\";i:32;s:3:\"sit\";i:33;s:7:\"sitting\";i:34;s:7:\"surfing\";i:35;s:10:\"technology\";i:36;s:4:\"work\";i:37;s:7:\"working\";i:38;s:5:\"young\";}s:14:\"resized_images\";a:4:{i:0;s:9:\"383x287_c\";i:1;s:9:\"550x420_c\";i:2;s:9:\"420x315_c\";i:3;s:9:\"350x260_c\";}}}");
INSERT INTO `wp_postmeta` VALUES("53961", "1323", "_thumbnail_id", "17771");
INSERT INTO `wp_postmeta` VALUES("53962", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53963", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53964", "1323", "_pingme", "1");
INSERT INTO `wp_postmeta` VALUES("53965", "1323", "_encloseme", "1");
INSERT INTO `wp_postmeta` VALUES("53966", "17772", "_form", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("53967", "17772", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"[your-name] <wordpress@localhost/mdeal2>\";s:4:\"body\";s:173:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:19:\"phuongk3a@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("53968", "17772", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"Mdeal Theme <wordpress@localhost/mdeal2>\";s:4:\"body\";s:115:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("53969", "17772", "_messages", "a:22:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}");
INSERT INTO `wp_postmeta` VALUES("53970", "17772", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("53971", "17772", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("53972", "17774", "_form", "<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>");
INSERT INTO `wp_postmeta` VALUES("53973", "17774", "_mail", "a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"[your-name] <wordpress@localhost/mdeal2>\";s:4:\"body\";s:173:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:19:\"phuongk3a@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("53974", "17774", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:41:\"Mdeal Theme <wordpress@localhost/mdeal2>\";s:4:\"body\";s:115:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:25:\"Reply-To: admin@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `wp_postmeta` VALUES("53975", "17774", "_messages", "a:22:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}");
INSERT INTO `wp_postmeta` VALUES("53976", "17774", "_additional_settings", "");
INSERT INTO `wp_postmeta` VALUES("53977", "17774", "_locale", "en_US");
INSERT INTO `wp_postmeta` VALUES("53978", "17775", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("53979", "17775", "_edit_lock", "1473838186:1");
INSERT INTO `wp_postmeta` VALUES("53980", "17775", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("53981", "17775", "_wpb_vc_js_status", "true");
INSERT INTO `wp_postmeta` VALUES("53982", "17775", "_vc_post_settings", "a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}");
INSERT INTO `wp_postmeta` VALUES("53983", "17775", "cs_layout", "");
INSERT INTO `wp_postmeta` VALUES("53984", "17775", "cs_page_layout", "");
INSERT INTO `wp_postmeta` VALUES("53985", "17775", "cs_sidebar_left", "");
INSERT INTO `wp_postmeta` VALUES("53986", "17775", "cs_sidebar_right", "");
INSERT INTO `wp_postmeta` VALUES("53987", "17775", "cs_onepage", "");
INSERT INTO `wp_postmeta` VALUES("53988", "17775", "cs_onepage_speed", "");
INSERT INTO `wp_postmeta` VALUES("53989", "17775", "cs_onepage_offset", "");
INSERT INTO `wp_postmeta` VALUES("53990", "17775", "cs_onepage_easing", "jswing");
INSERT INTO `wp_postmeta` VALUES("53991", "17775", "cs_row_navigation", "");
INSERT INTO `wp_postmeta` VALUES("53992", "17775", "cs_row_navigation_top", "");
INSERT INTO `wp_postmeta` VALUES("53993", "17775", "cs_row_navigation_bottom", "");
INSERT INTO `wp_postmeta` VALUES("53994", "17775", "cs_row_navigation_color", "");
INSERT INTO `wp_postmeta` VALUES("53995", "17775", "cs_row_navigation_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("53996", "17775", "cs_body_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("53997", "17775", "cs_body_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("53998", "17775", "cs_body_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("53999", "17775", "cs_body_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("54000", "17775", "cs_body_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("54001", "17775", "cs_body_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("54002", "17775", "cs_body_custom_class", "");
INSERT INTO `wp_postmeta` VALUES("54003", "17775", "cs_border_body", "");
INSERT INTO `wp_postmeta` VALUES("54004", "17775", "cs_border_body_color", "");
INSERT INTO `wp_postmeta` VALUES("54005", "17775", "cs_border_body_width", "");
INSERT INTO `wp_postmeta` VALUES("54006", "17775", "cs_page_header", "");
INSERT INTO `wp_postmeta` VALUES("54007", "17775", "cs_header_setting", "");
INSERT INTO `wp_postmeta` VALUES("54008", "17775", "cs_header_full_width", "");
INSERT INTO `wp_postmeta` VALUES("54009", "17775", "cs_header_position", "");
INSERT INTO `wp_postmeta` VALUES("54010", "17775", "cs_header_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("54011", "17775", "cs_enable_hidden_sidebar", "");
INSERT INTO `wp_postmeta` VALUES("54012", "17775", "cs_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("54013", "17775", "cs_logo_width", "");
INSERT INTO `wp_postmeta` VALUES("54014", "17775", "cs_header_sticky_logo_max_height", "");
INSERT INTO `wp_postmeta` VALUES("54015", "17775", "cs_hidden_logo_page", "");
INSERT INTO `wp_postmeta` VALUES("54016", "17775", "cs_header_fixed_top", "");
INSERT INTO `wp_postmeta` VALUES("54017", "17775", "cs_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("54018", "17775", "cs_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("54019", "17775", "cs_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("54020", "17775", "cs_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("54021", "17775", "cs_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("54022", "17775", "cs_header_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("54023", "17775", "cs_header_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("54024", "17775", "cs_header_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("54025", "17775", "cs_header_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("54026", "17775", "cs_header_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("54027", "17775", "cs_header_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("54028", "17775", "cs_bg_header_sm", "");
INSERT INTO `wp_postmeta` VALUES("54029", "17775", "cs_sticky_header_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("54030", "17775", "cs_show_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("54031", "17775", "cs_show_border_image_sticky_header", "");
INSERT INTO `wp_postmeta` VALUES("54032", "17775", "cs_sticky_header_border_bottom", "");
INSERT INTO `wp_postmeta` VALUES("54033", "17775", "cs_sticky_header_border_bottom_style", "none");
INSERT INTO `wp_postmeta` VALUES("54034", "17775", "cs_sticky_header_border_bottom_height", "");
INSERT INTO `wp_postmeta` VALUES("54035", "17775", "cs_sticky_header_border_bottom_color", "");
INSERT INTO `wp_postmeta` VALUES("54036", "17775", "cs_custom_logo_sticky", "");
INSERT INTO `wp_postmeta` VALUES("54037", "17775", "cs_sticky_header_logo_image", "");
INSERT INTO `wp_postmeta` VALUES("54038", "17775", "cs_nav_height", "");
INSERT INTO `wp_postmeta` VALUES("54039", "17775", "cs_menu_item_button", "");
INSERT INTO `wp_postmeta` VALUES("54040", "17775", "cs_menu_position", "");
INSERT INTO `wp_postmeta` VALUES("54041", "17775", "cs_header_fixed_menu_color", "");
INSERT INTO `wp_postmeta` VALUES("54042", "17775", "cs_header_fixed_menu_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("54043", "17775", "cs_header_fixed_menu_color_active", "");
INSERT INTO `wp_postmeta` VALUES("54044", "17775", "cs_header_fixed_sub_menu_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("54045", "17775", "cs_header_fixed_sub_menu_bg_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("54046", "17775", "cs_header_fixed_sub_menu_font_color", "");
INSERT INTO `wp_postmeta` VALUES("54047", "17775", "cs_header_fixed_sub_menu_font_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("54048", "17775", "cs_header_fixed_sub_menu_border_color", "");
INSERT INTO `wp_postmeta` VALUES("54049", "17775", "cs_sticky_menu_font_color_first_level", "");
INSERT INTO `wp_postmeta` VALUES("54050", "17775", "cs_sticky_menu_font_color_first_level_hover", "");
INSERT INTO `wp_postmeta` VALUES("54051", "17775", "cs_sticky_menu_font_color_first_level_active", "");
INSERT INTO `wp_postmeta` VALUES("54052", "17775", "cs_main_navigation", "");
INSERT INTO `wp_postmeta` VALUES("54053", "17775", "cs_top_navigation", "");
INSERT INTO `wp_postmeta` VALUES("54054", "17775", "cs_left_navigation", "");
INSERT INTO `wp_postmeta` VALUES("54055", "17775", "cs_right_navigation", "");
INSERT INTO `wp_postmeta` VALUES("54056", "17775", "cs_404_pages", "");
INSERT INTO `wp_postmeta` VALUES("54057", "17775", "cs_sticky_navigation", "");
INSERT INTO `wp_postmeta` VALUES("54058", "17775", "cs_page_title_setting", "");
INSERT INTO `wp_postmeta` VALUES("54059", "17775", "cs_page_title_enable", "");
INSERT INTO `wp_postmeta` VALUES("54060", "17775", "cs_title_bar_align", "");
INSERT INTO `wp_postmeta` VALUES("54061", "17775", "cs_title_bar_color", "");
INSERT INTO `wp_postmeta` VALUES("54062", "17775", "cs_page_title_custom_size", "");
INSERT INTO `wp_postmeta` VALUES("54063", "17775", "cs_page_title_custom_text", "");
INSERT INTO `wp_postmeta` VALUES("54064", "17775", "cs_page_title_custom_subheader_text", "");
INSERT INTO `wp_postmeta` VALUES("54065", "17775", "cs_page_title_custom_subheader_size", "");
INSERT INTO `wp_postmeta` VALUES("54066", "17775", "cs_page_title_custom_subheader_text_color", "");
INSERT INTO `wp_postmeta` VALUES("54067", "17775", "cs_page_title_background_color", "");
INSERT INTO `wp_postmeta` VALUES("54068", "17775", "cs_page_title_bg", "");
INSERT INTO `wp_postmeta` VALUES("54069", "17775", "cs_page_title_bg_overlay", "");
INSERT INTO `wp_postmeta` VALUES("54070", "17775", "cs_page_title_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("54071", "17775", "cs_page_title_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("54072", "17775", "cs_page_title_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("54073", "17775", "cs_page_title_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("54074", "17775", "cs_page_title_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("54075", "17775", "cs_page_title_padding", "");
INSERT INTO `wp_postmeta` VALUES("54076", "17775", "cs_page_title_margin", "");
INSERT INTO `wp_postmeta` VALUES("54077", "17775", "cs_page_title_class", "");
INSERT INTO `wp_postmeta` VALUES("54078", "17775", "cs_breadcrumb", "");
INSERT INTO `wp_postmeta` VALUES("54079", "17775", "cs_breadcrumb_text_align", "");
INSERT INTO `wp_postmeta` VALUES("54080", "17775", "cs_breadcrumb_color", "");
INSERT INTO `wp_postmeta` VALUES("54081", "17775", "cs_breadcrumb_text", "");
INSERT INTO `wp_postmeta` VALUES("54082", "17775", "cs_breadcrumb_padding", "");
INSERT INTO `wp_postmeta` VALUES("54083", "17775", "cs_footer_top_widgets", "");
INSERT INTO `wp_postmeta` VALUES("54084", "17775", "cs_footer_top_color_link", "");
INSERT INTO `wp_postmeta` VALUES("54085", "17775", "cs_footer_top_color_link_hover", "");
INSERT INTO `wp_postmeta` VALUES("54086", "17775", "cs_footer_top_heading_color", "");
INSERT INTO `wp_postmeta` VALUES("54087", "17775", "cs_footer_top_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("54088", "17775", "cs_footer_top_color", "");
INSERT INTO `wp_postmeta` VALUES("54089", "17775", "cs_footer_top_bg_image", "");
INSERT INTO `wp_postmeta` VALUES("54090", "17775", "cs_footer_top_bg_repeat", "");
INSERT INTO `wp_postmeta` VALUES("54091", "17775", "cs_footer_top_bg_size", "");
INSERT INTO `wp_postmeta` VALUES("54092", "17775", "cs_footer_top_bg_attachment", "");
INSERT INTO `wp_postmeta` VALUES("54093", "17775", "cs_footer_top_bg_position", "");
INSERT INTO `wp_postmeta` VALUES("54094", "17775", "cs_footer_top_bg_parallax", "");
INSERT INTO `wp_postmeta` VALUES("54095", "17775", "cs_off_bottom_top_image", "");
INSERT INTO `wp_postmeta` VALUES("54096", "17775", "cs_bottom_top_image_arrow_color", "");
INSERT INTO `wp_postmeta` VALUES("54097", "17775", "cs_enable_curve_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("54098", "17775", "cs_curve_color_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("54099", "17775", "cs_curve_height_footer_page", "");
INSERT INTO `wp_postmeta` VALUES("54100", "17775", "cs_footer_top_padding_on_page", "");
INSERT INTO `wp_postmeta` VALUES("54101", "17775", "cs_footer_top_margin_on_page", "");
INSERT INTO `wp_postmeta` VALUES("54102", "17775", "cs_footer_bottom_enable", "");
INSERT INTO `wp_postmeta` VALUES("54103", "17775", "cs_footer_bottom_page_bg_color", "");
INSERT INTO `wp_postmeta` VALUES("54104", "17775", "cs_footer_bottom_page_color", "");
INSERT INTO `wp_postmeta` VALUES("54105", "17775", "cs_footer_bottom_page_link_color", "");
INSERT INTO `wp_postmeta` VALUES("54106", "17775", "cs_footer_bottom_page_link_color_hover", "");
INSERT INTO `wp_postmeta` VALUES("54107", "17775", "cs_page_category", "");
INSERT INTO `wp_postmeta` VALUES("54108", "17775", "cs_portfolio_category", "");
INSERT INTO `wp_postmeta` VALUES("54109", "17775", "cs_page_limit", "");
INSERT INTO `wp_postmeta` VALUES("54110", "17775", "cs_page_masonry_columns", "2");
INSERT INTO `wp_postmeta` VALUES("54111", "17775", "cs_page_masonry_loadmore", "");
INSERT INTO `wp_postmeta` VALUES("54112", "17775", "cs_page_masonry_filter", "");
INSERT INTO `wp_postmeta` VALUES("54113", "17775", "cs_page_title_engle", "");
INSERT INTO `wp_postmeta` VALUES("54114", "17775", "cs_page_title_engle_style", "1");
INSERT INTO `wp_postmeta` VALUES("54115", "17775", "cs_page_title_engle_height", "");
INSERT INTO `wp_postmeta` VALUES("54116", "17775", "cs_page_title_engle_color", "");
INSERT INTO `wp_postmeta` VALUES("54117", "17775", "price", "");
INSERT INTO `wp_postmeta` VALUES("54118", "17775", "value", "");
INSERT INTO `wp_postmeta` VALUES("54119", "17775", "option_1", "");
INSERT INTO `wp_postmeta` VALUES("54120", "17775", "option_2", "");
INSERT INTO `wp_postmeta` VALUES("54121", "17775", "option_3", "");
INSERT INTO `wp_postmeta` VALUES("54122", "17775", "option_4", "");
INSERT INTO `wp_postmeta` VALUES("54123", "17775", "option_5", "");
INSERT INTO `wp_postmeta` VALUES("54124", "17775", "option_6", "");
INSERT INTO `wp_postmeta` VALUES("54125", "17775", "option_7", "");
INSERT INTO `wp_postmeta` VALUES("54126", "17775", "option_8", "");
INSERT INTO `wp_postmeta` VALUES("54127", "17775", "option_9", "");
INSERT INTO `wp_postmeta` VALUES("54128", "17775", "option_10", "");
INSERT INTO `wp_postmeta` VALUES("54129", "17775", "button_url", "");
INSERT INTO `wp_postmeta` VALUES("54130", "17775", "button_text", "");
INSERT INTO `wp_postmeta` VALUES("54131", "17775", "is_feature", "");
INSERT INTO `wp_postmeta` VALUES("54132", "17775", "best_value", "");
INSERT INTO `wp_postmeta` VALUES("54133", "17775", "team_position", "");
INSERT INTO `wp_postmeta` VALUES("54134", "17775", "team_email", "");
INSERT INTO `wp_postmeta` VALUES("54135", "17775", "team_facebook", "");
INSERT INTO `wp_postmeta` VALUES("54136", "17775", "team_twitter", "");
INSERT INTO `wp_postmeta` VALUES("54137", "17775", "team_google_plus", "");
INSERT INTO `wp_postmeta` VALUES("54138", "17775", "team_dribbble", "");
INSERT INTO `wp_postmeta` VALUES("54139", "17775", "team_youtube", "");
INSERT INTO `wp_postmeta` VALUES("54140", "17775", "team_rss", "");
INSERT INTO `wp_postmeta` VALUES("54141", "17775", "team_flickr", "");
INSERT INTO `wp_postmeta` VALUES("54142", "17775", "team_linkedin", "");
INSERT INTO `wp_postmeta` VALUES("54143", "17775", "team_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("54144", "17775", "team_tumblr", "");
INSERT INTO `wp_postmeta` VALUES("54145", "17775", "team_pinterest", "");
INSERT INTO `wp_postmeta` VALUES("54146", "17775", "team_sky", "");
INSERT INTO `wp_postmeta` VALUES("54147", "17775", "team_github", "");
INSERT INTO `wp_postmeta` VALUES("54148", "17775", "team_instagram", "");
INSERT INTO `wp_postmeta` VALUES("54149", "17775", "slide_template", "default");
INSERT INTO `wp_postmeta` VALUES("54150", "17775", "eg_sources_html5_mp4", "");
INSERT INTO `wp_postmeta` VALUES("54151", "17775", "eg_sources_html5_ogv", "");
INSERT INTO `wp_postmeta` VALUES("54152", "17775", "eg_sources_html5_webm", "");
INSERT INTO `wp_postmeta` VALUES("54153", "17775", "eg_sources_youtube", "");
INSERT INTO `wp_postmeta` VALUES("54154", "17775", "eg_sources_vimeo", "");
INSERT INTO `wp_postmeta` VALUES("54155", "17775", "eg_sources_wistia", "");
INSERT INTO `wp_postmeta` VALUES("54156", "17775", "eg_sources_image", "");
INSERT INTO `wp_postmeta` VALUES("54157", "17775", "eg_sources_iframe", "");
INSERT INTO `wp_postmeta` VALUES("54158", "17775", "eg_sources_soundcloud", "");
INSERT INTO `wp_postmeta` VALUES("54159", "17775", "eg_vimeo_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("54160", "17775", "eg_youtube_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("54161", "17775", "eg_wistia_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("54162", "17775", "eg_html5_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("54163", "17775", "eg_soundcloud_ratio", "0");
INSERT INTO `wp_postmeta` VALUES("54164", "17775", "eg_settings_custom_meta_skin", "");
INSERT INTO `wp_postmeta` VALUES("54165", "17775", "eg_settings_custom_meta_element", "");
INSERT INTO `wp_postmeta` VALUES("54166", "17775", "eg_settings_custom_meta_setting", "");
INSERT INTO `wp_postmeta` VALUES("54167", "17775", "eg_settings_custom_meta_style", "");
INSERT INTO `wp_postmeta` VALUES("54168", "17775", "eg-pricetable-price", "");
INSERT INTO `wp_postmeta` VALUES("54169", "17775", "eg-pricetable-line1", "");
INSERT INTO `wp_postmeta` VALUES("54170", "17775", "eg-pricetable-line2", "");
INSERT INTO `wp_postmeta` VALUES("54171", "17775", "eg-pricetable-line3", "");
INSERT INTO `wp_postmeta` VALUES("54172", "17775", "eg-pricetable-line4", "");
INSERT INTO `wp_postmeta` VALUES("54173", "17775", "eg-pricetable-buy-url", "");
INSERT INTO `wp_postmeta` VALUES("54174", "17775", "eg-demogrid-link", "");
INSERT INTO `wp_postmeta` VALUES("54175", "17775", "eg-clients-icon", "");
INSERT INTO `wp_postmeta` VALUES("54176", "17775", "eg-clients-icon-dark", "");
INSERT INTO `wp_postmeta` VALUES("54177", "17775", "eg_sources_revslider", "");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("209", "1", "2014-12-10 03:00:57", "2014-12-10 03:00:57", "", "Homepage_02", "", "inherit", "open", "open", "", "homepage_02", "", "", "2014-12-10 03:00:57", "2014-12-10 03:00:57", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Homepage_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("6", "1", "2014-12-03 02:55:10", "2014-12-03 02:55:10", "", "Clients  ", "", "publish", "open", "open", "", "clients", "", "", "2014-12-03 02:55:10", "2014-12-03 02:55:10", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?page_id=6", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("7", "1", "2014-12-03 02:55:10", "2014-12-03 02:55:10", "", "Clients  ", "", "inherit", "open", "open", "", "6-revision-v1", "", "", "2014-12-03 02:55:10", "2014-12-03 02:55:10", "", "6", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=7", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("18", "1", "2014-12-03 02:56:44", "2014-12-03 02:56:44", "", "Blog", "", "publish", "open", "open", "", "blog", "", "", "2015-12-30 15:06:49", "2015-12-30 15:06:49", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?page_id=18", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("19", "1", "2014-12-03 02:56:44", "2014-12-03 02:56:44", "", "Blog", "", "inherit", "open", "open", "", "18-revision-v1", "", "", "2014-12-03 02:56:44", "2014-12-03 02:56:44", "", "18", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=19", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1130", "1", "2015-02-04 09:16:27", "2015-02-04 09:16:27", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"30\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-heart-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"LIFE SPAN\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"11\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-apple\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"APPLES A DAY\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"4\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-child\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"CHILDREN\" heading_color=\"#888888\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec laoreet faucibus risus non gravida. Donec accumsan consequat diam et fermentum. Nam bibendum urna nisl, ut ornare tellus blandit ac. Vestibulum finibus tortor pulvinar laoreet ultricies. Aliquam hendrerit dolor at est pulvinar porttitor. Donec porta quis lectus sit amet fermentum. Curabitur metus massa, tincidunt nec sodales in, tincidunt ac est. Maecenas sit amet velit in nibh iaculis fermentum. Sed pharetra velit a vestibulum sollicitudin. Phasellus dapibus porttitor ligula at interdum. Etiam id mollis tellus. Vestibulum a tellus sit amet ipsum pellentesque sollicitudin. Suspendisse potenti. Quisque imperdiet dolor vitae viverra finibus. Vivamus iaculis lectus eget sollicitudin lobortis.[/vc_column_text][/vc_column][/vc_row]", "Farinha Lactea", "", "inherit", "open", "open", "", "242-autosave-v1", "", "", "2015-02-04 09:16:27", "2015-02-04 09:16:27", "", "242", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/242-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("28", "1", "2014-12-03 03:13:46", "2014-12-03 03:13:46", "<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6\">\r\n		[text* name placeholder \"Name\"]\r\n	</div>\r\n	<div class=\"col-xs-12 col-sm-6 col-md-6 col-lg-6\">\r\n		[email* email  placeholder \"Email\"]\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n		[textarea* message placeholder \"Your Message\"]\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n        [submit class:btn class:btn-default-alt class:size-default \"Send\"]\r\n</div>\r\n</div>\n[name]\n[name] <wordpress@demo.cmssuperheroes.com/Wordpress>\nFrom: [name] <[email]>\r\n\r\nMessage Body:\r\n[message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\nadmin@gmail.com\nReply-To: [email]\n\n\n\n\n[your-subject]\nWP Spectrum <wordpress@demo.cmssuperheroes.com/Wordpress>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nThis input is too long.\nThis input is too short.", "Contact form 1", "", "publish", "open", "open", "", "contact-form-1", "", "", "2015-06-23 03:16:41", "2015-06-23 03:16:41", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=wpcf7_contact_form&#038;p=28", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("32", "1", "2014-12-03 03:30:20", "2014-12-03 03:30:20", "", "bg-slider1", "", "inherit", "open", "open", "", "bg-slider1", "", "", "2014-12-03 03:30:20", "2014-12-03 03:30:20", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-slider1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("35", "1", "2014-12-03 03:59:31", "2014-12-03 03:59:31", "", "Client1", "", "publish", "closed", "closed", "", "client1", "", "", "2015-12-24 16:53:16", "2015-12-24 16:53:16", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=35", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("46", "1", "2014-12-03 04:00:16", "2014-12-03 04:00:16", "", "Client2", "", "publish", "closed", "closed", "", "client2", "", "", "2015-12-24 16:56:07", "2015-12-24 16:56:07", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=46", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("47", "1", "2014-12-03 04:00:34", "2014-12-03 04:00:34", "", "Client3", "", "publish", "closed", "closed", "", "client3", "", "", "2015-12-24 16:57:42", "2015-12-24 16:57:42", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=47", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("48", "1", "2014-12-03 04:00:55", "2014-12-03 04:00:55", "", "Client4", "", "publish", "closed", "closed", "", "client4", "", "", "2015-12-24 16:58:38", "2015-12-24 16:58:38", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=48", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("49", "1", "2014-12-03 04:01:14", "2014-12-03 04:01:14", "", "Client5", "", "publish", "closed", "closed", "", "client5", "", "", "2015-12-24 16:59:43", "2015-12-24 16:59:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=49", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("50", "1", "2014-12-03 04:01:32", "2014-12-03 04:01:32", "", "Client6", "", "publish", "closed", "closed", "", "client6", "", "", "2015-12-24 17:02:10", "2015-12-24 17:02:10", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=50", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("51", "1", "2014-12-03 04:01:59", "2014-12-03 04:01:59", "", "Client7", "", "publish", "closed", "closed", "", "client7", "", "", "2015-12-24 17:03:22", "2015-12-24 17:03:22", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=51", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("52", "1", "2014-12-03 04:02:19", "2014-12-03 04:02:19", "", "Client8", "", "publish", "closed", "closed", "", "client8", "", "", "2015-12-24 17:04:50", "2015-12-24 17:04:50", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=myclients&#038;p=52", "0", "myclients", "", "0");
INSERT INTO `wp_posts` VALUES("76", "1", "2014-12-03 09:37:39", "2014-12-03 09:37:39", "Donec mattis felis sit amet viverra elementum. Nullam rutrum sit amet nisl eu rhoncus. Duis tristique dolor magna, vitae mattis mauris consectetur elementum.", "EMILY KNOWLES", "", "publish", "open", "open", "", "emily-knowles", "", "", "2016-01-18 15:26:30", "2016-01-18 15:26:30", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=testimonial&#038;p=76", "0", "testimonial", "", "0");
INSERT INTO `wp_posts` VALUES("77", "1", "2014-12-03 09:37:26", "2014-12-03 09:37:26", "", "3", "", "inherit", "open", "open", "", "3", "", "", "2014-12-03 09:37:26", "2014-12-03 09:37:26", "", "76", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17692", "1", "2016-01-04 15:52:27", "2016-01-04 15:52:27", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]aaaaaaaaaa[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2016-01-04 15:52:27", "2016-01-04 15:52:27", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17652", "1", "2015-12-27 16:15:00", "2015-12-27 16:15:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 16:15:00", "2015-12-27 16:15:00", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1213", "1", "2015-01-12 15:43:57", "2015-01-12 15:43:57", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\nPellentesque eget nisl nec dolor sollicitudin pulvinar non a nisl. Morbi eget laoreet erat, in tincidunt neque. Morbi luctus hendrerit sagittis. Praesent vehicula eros tortor, ac ultricies metus cursus vitae. Nullam felis enim, volutpat sed tristique id, consectetur eget purus. In porta augue a magna tristique eleifend. Aenean imperdiet rhoncus eros, ut imperdiet sapien suscipit sed. Curabitur non euismod sem. Fusce ut placerat turpis. Nulla facilisi. Aliquam erat volutpat. Vivamus rhoncus id nibh at iaculis. Suspendisse sodales efficitur fringilla. Phasellus nec justo tincidunt, fermentum neque vel, maximus diam. Sed et pretium purus. Vestibulum non nulla sit amet elit commodo varius.\r\n", "Kerning", "", "publish", "open", "open", "", "tiger-cubs", "", "", "2015-02-04 09:13:49", "2015-02-04 09:13:49", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1213", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("238", "1", "2014-12-10 07:18:03", "2014-12-10 07:18:03", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" icon=\"fa fa-line-chart\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WIND SPEED\" heading_color=\"#888888\" digit=\"13\" digit_font_size=\"71px\" digit_font_color=\"#222222\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" icon=\"fa fa-sun-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HOURS OF SUN\" heading_color=\"#888888\" digit=\"10\" digit_font_size=\"71px\" digit_font_color=\"#222222\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" icon=\" fa-map-marker\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"VISITORS \" heading_color=\"#888888\" digit=\"678\" digit_font_size=\"71px\" digit_font_color=\"#222222\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Stationery", "", "publish", "open", "open", "", "mountain-trekking", "", "", "2015-06-29 08:50:52", "2015-06-29 08:50:52", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=238", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("239", "1", "2014-12-10 07:18:59", "2014-12-10 07:18:59", "[vc_row][vc_column][vc_column_text]<strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</strong>\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_column][/vc_row]", "Kiosco", "", "publish", "open", "open", "", "mountain-trekking-2", "", "", "2015-07-03 18:32:37", "2015-07-03 18:32:37", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=239", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("240", "1", "2014-12-10 07:19:17", "2014-12-10 07:19:17", "[vc_row css=\".vc_custom_1423501181076{padding-bottom: 30px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"498\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-bus\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"CAPACITY\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"480\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-tachometer\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HIGHEST SPEED\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"1234\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-angle-double-right\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"MILES DRIVEN\" heading_color=\"#888888\"][/vc_column][/vc_row]", "Willow Tree Coffee", "", "publish", "open", "open", "", "mountain-trekking-3", "", "", "2015-02-09 16:59:57", "2015-02-09 16:59:57", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=240", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("241", "1", "2014-12-10 07:19:53", "2014-12-10 07:19:53", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"7\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-sun-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"SUNRISE\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"9\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-moon-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"SUNSET\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"33\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-umbrella\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"RAINFALL\" heading_color=\"#888888\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.[/vc_column_text][/vc_column][/vc_row]", "Prisma", "", "publish", "open", "open", "", "mountain-trekking-5", "", "", "2015-02-09 17:14:23", "2015-02-09 17:14:23", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=241", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("242", "1", "2014-12-10 07:19:49", "2014-12-10 07:19:49", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"30\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-heart-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"LIFE SPAN\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"11\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-apple\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"APPLES A DAY\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"4\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-child\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"CHILDREN\" heading_color=\"#888888\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec laoreet faucibus risus non gravida. Donec accumsan consequat diam et fermentum. Nam bibendum urna nisl, ut ornare tellus blandit ac. Vestibulum finibus tortor pulvinar laoreet ultricies. Aliquam hendrerit dolor at est pulvinar porttitor. Donec porta quis lectus sit amet fermentum. Curabitur metus massa, tincidunt nec sodales in, tincidunt ac est. Maecenas sit amet velit in nibh iaculis fermentum. Sed pharetra velit a vestibulum sollicitudin. Phasellus dapibus porttitor ligula at interdum. Etiam id mollis tellus. Vestibulum a tellus sit amet ipsum pellentesque sollicitudin. Suspendisse potenti. Quisque imperdiet dolor vitae viverra finibus. Vivamus iaculis lectus eget sollicitudin lobortis.[/vc_column_text][/vc_column][/vc_row]", "Business Cards", "", "publish", "open", "open", "", "mountain-trekking-4", "", "", "2015-05-28 13:36:54", "2015-05-28 13:36:54", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=242", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("243", "1", "2014-12-10 07:20:28", "2014-12-10 07:20:28", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit=\"3\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-group\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY COMPANIES\" heading_color=\"#888888\" digit=\"345\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-heart\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Cutting", "", "publish", "open", "open", "", "mountain-trekking-7", "", "", "2015-05-28 13:38:42", "2015-05-28 13:38:42", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=243", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("244", "1", "2014-12-10 07:20:25", "2014-12-10 07:20:25", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Le Bleu", "", "publish", "open", "open", "", "mountain-trekking-6", "", "", "2015-06-16 08:12:17", "2015-06-16 08:12:17", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=244", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("245", "1", "2014-12-10 07:21:03", "2014-12-10 07:21:03", "[vc_row][vc_column][vc_column_text]<strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</strong>\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\r\n\r\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_column][/vc_row]", "Stationery", "", "publish", "open", "open", "", "mountain-trekking-8", "", "", "2015-06-29 08:57:02", "2015-06-29 08:57:02", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=245", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("9032", "1", "2014-12-09 08:52:22", "2014-12-09 08:52:22", "", "STARTER", "", "publish", "closed", "closed", "", "starter", "", "", "2015-12-11 13:45:59", "2015-12-11 13:45:59", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9032", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9036", "1", "2014-12-09 08:58:46", "2014-12-09 08:58:46", "", "BASIC", "", "publish", "closed", "closed", "", "basic", "", "", "2015-12-11 13:47:21", "2015-12-11 13:47:21", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9036", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9038", "1", "2014-12-09 08:59:46", "2014-12-09 08:59:46", "", "CLASSIC", "", "publish", "closed", "closed", "", "classic", "", "", "2015-12-11 14:00:17", "2015-12-11 14:00:17", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9038", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("1199", "1", "2015-01-12 15:27:32", "2015-01-12 15:27:32", "", "Portfolio17", "", "inherit", "open", "open", "", "portfolio17", "", "", "2015-01-12 15:27:32", "2015-01-12 15:27:32", "", "1102", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio17.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1200", "1", "2015-01-12 15:27:34", "2015-01-12 15:27:34", "", "Portfolio18", "", "inherit", "open", "open", "", "portfolio18", "", "", "2015-01-12 15:27:34", "2015-01-12 15:27:34", "", "1102", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio18.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("16896", "1", "2015-07-17 19:51:46", "2015-07-17 19:51:46", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi accumsan sapien lorem, in dictum eros interdum sed. Fusce auctor vitae velit quis tincidunt. Praesent ut ultrices eros. Vestibulum accumsan ante odio, fringilla eleifend mi tristique vitae. Vestibulum consectetur tempor cursus. Quisque suscipit purus nec molestie viverra. Aliquam in lorem id magna tristique mattis. Etiam luctus pulvinar rhoncus. Fusce elementum ante ac augue facilisis interdum. Sed tortor mauris, mollis sed iaculis sit amet, ultricies sit amet felis. Duis at justo ac lacus rutrum imperdiet sed sed augue. Nulla eget mi ultrices, scelerisque turpis fermentum, malesuada velit.\r\n\r\nUt lobortis nisl ac felis ullamcorper, in congue nisl congue. In hac habitasse platea dictumst. Mauris dignissim justo diam, in feugiat mauris bibendum quis. Donec et ante odio. Nulla arcu urna, placerat a aliquet vel, placerat non massa. Nullam tempor in elit semper placerat. Proin volutpat augue mattis augue maximus, vitae tincidunt odio viverra. Vestibulum euismod felis ac ultricies consectetur. Curabitur fermentum ornare metus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque eget placerat neque. Integer a mi lorem. Sed lorem mauris, condimentum id eros ut, finibus pulvinar eros. Donec eleifend elementum feugiat. Curabitur nec eros elit.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\n&nbsp;", "Bull in a China Shop", "", "inherit", "open", "open", "", "1323-revision-v1", "", "", "2015-07-17 19:51:46", "2015-07-17 19:51:46", "", "1323", "http://localhost/mdeal2/?p=16896", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16898", "1", "2015-07-17 19:54:38", "2015-07-17 19:54:38", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi accumsan sapien lorem, in dictum eros interdum sed. Fusce auctor vitae velit quis tincidunt. Praesent ut ultrices eros. Vestibulum accumsan ante odio, fringilla eleifend mi tristique vitae. Vestibulum consectetur tempor cursus. Quisque suscipit purus nec molestie viverra. Aliquam in lorem id magna tristique mattis. Etiam luctus pulvinar rhoncus. Fusce elementum ante ac augue facilisis interdum. Sed tortor mauris, mollis sed iaculis sit amet, ultricies sit amet felis. Duis at justo ac lacus rutrum imperdiet sed sed augue. Nulla eget mi ultrices, scelerisque turpis fermentum, malesuada velit.\r\n\r\nUt lobortis nisl ac felis ullamcorper, in congue nisl congue. In hac habitasse platea dictumst. Mauris dignissim justo diam, in feugiat mauris bibendum quis. Donec et ante odio. Nulla arcu urna, placerat a aliquet vel, placerat non massa. Nullam tempor in elit semper placerat. Proin volutpat augue mattis augue maximus, vitae tincidunt odio viverra. Vestibulum euismod felis ac ultricies consectetur. Curabitur fermentum ornare metus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque eget placerat neque. Integer a mi lorem. Sed lorem mauris, condimentum id eros ut, finibus pulvinar eros. Donec eleifend elementum feugiat. Curabitur nec eros elit.", "Deer In The Woods", "", "inherit", "open", "open", "", "1332-revision-v1", "", "", "2015-07-17 19:54:38", "2015-07-17 19:54:38", "", "1332", "http://localhost/mdeal2/?p=16898", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("385", "1", "2015-01-10 03:48:23", "2015-01-10 03:48:23", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.\r\n<blockquote>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</blockquote>\r\n<ul>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul>\r\n<ol>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol>\r\nProin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.\r\n\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\nVestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.\r\n\r\nEtiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.\r\n\r\nNulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.", "Work station for designer", "", "publish", "open", "open", "", "blog-post-title", "", "", "2016-09-12 02:54:24", "2016-09-12 02:54:24", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=385", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("390", "1", "2014-12-15 03:48:23", "2014-12-15 03:48:23", "No matter what project you have in mind, our creative team start at the begining of \r\nyour journey, then develop your idea into an amazing piece of reality", "BLOG POST TITLE", "", "inherit", "open", "open", "", "385-revision-v1", "", "", "2014-12-15 03:48:23", "2014-12-15 03:48:23", "", "385", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/385-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("391", "1", "2014-12-15 03:49:27", "2014-12-15 03:49:27", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Choppy Sea", "", "publish", "open", "open", "", "blog-post-title-2", "", "", "2015-07-17 10:20:50", "2015-07-17 10:20:50", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=391", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("392", "1", "2014-12-15 03:49:27", "2014-12-15 03:49:27", "No matter what project you have in mind, our creative team start at the begining of \r\nyour journey, then develop your idea into an amazing piece of reality", "BLOG POST TITLE", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2014-12-15 03:49:27", "2014-12-15 03:49:27", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("394", "1", "2014-12-29 03:50:06", "2014-12-29 03:50:06", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\" alt=\"waterhouse-lg\" width=\"1640\" height=\"1475\" /></a>", "Color is very important in the Design", "", "publish", "open", "open", "", "blog-post-title-3", "", "", "2016-09-12 02:57:38", "2016-09-12 02:57:38", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=394", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("395", "1", "2014-12-15 03:50:06", "2014-12-15 03:50:06", "No matter what project you have in mind, our creative team start at the begining of \r\nyour journey, then develop your idea into an amazing piece of reality", "BLOG POST TITLE", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2014-12-15 03:50:06", "2014-12-15 03:50:06", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("396", "1", "2014-01-09 03:50:41", "2014-01-09 03:50:41", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;", "consectetur adipiscing", "", "publish", "open", "open", "", "blog-post-title-4", "", "", "2016-01-12 16:22:54", "2016-01-12 16:22:54", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=396", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("397", "1", "2014-12-15 03:50:41", "2014-12-15 03:50:41", "No matter what project you have in mind, our creative team start at the begining of \r\nyour journey, then develop your idea into an amazing piece of reality", "BLOG POST TITLE", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2014-12-15 03:50:41", "2014-12-15 03:50:41", "", "396", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/396-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17263", "1", "2015-09-20 02:53:20", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-09-20 02:53:20", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17263", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17264", "1", "2015-09-20 15:24:20", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-09-20 15:24:20", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17264", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17267", "1", "2015-10-30 02:10:37", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-10-30 02:10:37", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17267", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17261", "1", "2015-09-19 17:24:05", "2015-09-19 17:24:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\n\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\n\n[/vc_column_text][/vc_column][/vc_row]", "Page Title", "", "trash", "open", "open", "", "page-title", "", "", "2015-12-30 14:58:08", "2015-12-30 14:58:08", "", "0", "http://localhost/mdeal2/?page_id=17261", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17262", "1", "2015-09-19 17:23:39", "2015-09-19 17:23:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Page Title", "", "inherit", "open", "open", "", "17261-revision-v1", "", "", "2015-09-19 17:23:39", "2015-09-19 17:23:39", "", "17261", "http://localhost/mdeal2/17261-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17208", "1", "2015-07-30 10:15:51", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-30 10:15:51", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?post_type=product&p=17208", "0", "product", "", "0");
INSERT INTO `wp_posts` VALUES("17237", "1", "2015-07-30 17:58:41", "2015-07-30 17:58:41", "", "woo_logo", "", "inherit", "open", "open", "", "woo_logo", "", "", "2015-07-30 17:58:41", "2015-07-30 17:58:41", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/woo_logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("461", "1", "2014-12-17 03:26:48", "2014-12-17 03:26:48", "", "bg-slider4", "", "inherit", "open", "open", "", "bg-slider4", "", "", "2014-12-17 03:26:48", "2014-12-17 03:26:48", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-slider4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17301", "1", "2015-11-26 10:52:17", "2015-11-26 10:52:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:52:17", "2015-11-26 10:52:17", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17300", "1", "2015-11-26 10:49:58", "2015-11-26 10:49:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448534996540{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:49:58", "2015-11-26 10:49:58", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("475", "1", "2014-12-17 03:53:05", "2014-12-17 03:53:05", "", "parallax-corporate", "", "inherit", "open", "open", "", "parallax-corporate", "", "", "2014-12-17 03:53:05", "2014-12-17 03:53:05", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/parallax-corporate.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1743", "1", "2015-02-03 10:52:54", "2015-02-03 10:52:54", "[vc_row css=\".vc_custom_1422960282290{padding-top: 300px !important;padding-bottom: 300px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhousenew2.jpg?id=1650) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" type=\"ww-custom\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"100px\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"false\" parallax_speed=\"0.8\" bg_video_color=\"#000000\" bg_video_transparent=\"0.3\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" font_color=\"#ffffff\" text_align=\"center\"][vc_column_text]\n<h1 style=\"color: #fff;\">PARALLAX DREAMS</h1>\n<h3 style=\"font-weight: 300; color: #fff;\">STUNNING PRODUCT PROMOTIONS</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422960289220{padding-top: 120px !important;padding-bottom: 120px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"100px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_right_top\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1=\"1584\" lax_layer1_width=\"665px\" lax_layer1_height=\"436px\" lax_layer2=\"1581\" lax_layer2_width=\"638px\" lax_layer2_height=\"297px\" lax_layer3=\"1582\" lax_layer3_width=\"215px\" lax_layer3_height=\"356px\" lax_layer4=\"1583\" lax_layer4_width=\"531px\" lax_layer4_height=\"527px\" lax_layer5=\"1580\" lax_layer5_width=\"261px\" lax_layer5_height=\"188px\" lax_layer1_position_x=\"-250px\" lax_layer1_position_y=\"-150px\" type=\"ww-custom\" engle_position_style2=\"engle-bottom-style2\" engle_color_style2=\"#ffffff\" lax_layer2_position_x=\"-200px\" lax_layer2_position_y=\"-80px\" lax_layer4_position_x=\"150px\" lax_layer5_position_x=\"250px\"][vc_column width=\"1/3\"][vc_empty_space height=\"40px\"][vc_single_image image=\"1579\" border_color=\"grey\" img_link_target=\"_self\" img_size=\"532x726\"][/vc_column][vc_column width=\"2/3\" text_align=\"right\"][vc_empty_space height=\"150px\"][vc_column_text]\n<h1 style=\"color: #222;\">MOUSE HOVER PARALLAX EFFECT</h1>\nCreate visually stunning mouse hover effects to promote your products and services. The power of Spectrum is waiting to be unleashed on your next project.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422960628218{border-bottom-width: 6px !important;padding-top: 400px !important;padding-bottom: 350px !important;background: #f5f5f5 url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/tress1.jpg?id=906) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.4\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"false\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-top-style2\" engle_color_style2=\"#ffffff\" enable_engle_style2=\"false\" bg_video_color=\"#020202\"][vc_column width=\"1/1\" font_color=\"#ffffff\" text_align=\"center\"][vc_column_text]\n<h1 style=\"color: #ffffff; text-align: center;\">IMAGE PARALLAX BACKGROUNDS</h1>\n<h3 style=\"font-weight: 300; color: #ffffff; text-align: center;\">Create visually stunning rows with angled borders that work perfect with image parallax effects.</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422960771567{padding-top: 240px !important;padding-bottom: 290px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"100px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.3\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" loop=\"1\" autoplay=\"1\" muted=\"1\" bg_video_src_mp4=\"http://www.red-ferndevelopment.co.uk/HighRockColors.mp4\" bg_video_src_webm=\"http://www.red-ferndevelopment.co.uk/HighRockColors.webm\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\" bg_video_color=\"#020202\" disable_parallax_mobile=\"false\"][vc_column width=\"1/1\" font_color=\"#ffffff\" text_align=\"center\"][vc_column_text]\n<h1 style=\"color: #ffffff; text-align: center;\">VIDEO PARALLAX BACKGROUNDS</h1>\n<h3 style=\"font-weight: 300; color: #ffffff; text-align: center;\">Give a unique user experience with video backgrounds.</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421247507457{padding-top: 80px !important;padding-bottom: 120px !important;background-color: #ffffff !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"ww-custom\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"60\" text_style=\"none\" icon=\" fa-clock-o\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"4\" text_style=\"none\" icon=\"fa-group\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"124\" text_style=\"none\" icon=\"fa-heart\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY CLIENTS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"7\" text_style=\"none\" icon=\"fa-github-alt\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"CATS &amp; DOGS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421242562281{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #222222 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"THE NEXT GENERATION OF WORDPRESS THEME HAS ARRIVED\" call_text_font_size=\"22px\" call_text_color=\"#ffffff\" title=\"Purchase Spectrum Now!\" target=\"_blank\" button_type=\"btn-default\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row]", "Parallax Dream", "", "inherit", "open", "open", "", "1570-revision-v1", "", "", "2015-02-03 10:52:54", "2015-02-03 10:52:54", "", "0", "http://localhost/mdeal2/?p=1743", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1745", "1", "2015-02-03 10:54:26", "2015-02-03 10:54:26", "[vc_row css=\".vc_custom_1422960282290{padding-top: 300px !important;padding-bottom: 300px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhousenew2.jpg?id=1650) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" type=\"ww-custom\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"100px\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"false\" parallax_speed=\"0.8\" bg_video_color=\"#000000\" bg_video_transparent=\"0.3\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" font_color=\"#ffffff\" text_align=\"center\"][vc_column_text]\n<h1 style=\"color: #fff;\">PARALLAX DREAMS</h1>\n<h3 style=\"font-weight: 300; color: #fff;\">STUNNING PRODUCT PROMOTIONS</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422960289220{padding-top: 120px !important;padding-bottom: 120px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"100px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_right_top\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1=\"1584\" lax_layer1_width=\"665px\" lax_layer1_height=\"436px\" lax_layer2=\"1581\" lax_layer2_width=\"638px\" lax_layer2_height=\"297px\" lax_layer3=\"1582\" lax_layer3_width=\"215px\" lax_layer3_height=\"356px\" lax_layer4=\"1583\" lax_layer4_width=\"531px\" lax_layer4_height=\"527px\" lax_layer5=\"1580\" lax_layer5_width=\"261px\" lax_layer5_height=\"188px\" lax_layer1_position_x=\"-250px\" lax_layer1_position_y=\"-150px\" type=\"ww-custom\" engle_position_style2=\"engle-bottom-style2\" engle_color_style2=\"#ffffff\" lax_layer2_position_x=\"-200px\" lax_layer2_position_y=\"-80px\" lax_layer4_position_x=\"150px\" lax_layer5_position_x=\"250px\"][vc_column width=\"1/3\"][vc_empty_space height=\"40px\"][vc_single_image image=\"1579\" border_color=\"grey\" img_link_target=\"_self\" img_size=\"532x726\"][/vc_column][vc_column width=\"2/3\" text_align=\"right\"][vc_empty_space height=\"150px\"][vc_column_text]\n<h1 style=\"color: #222;\">MOUSE HOVER PARALLAX EFFECT</h1>\nCreate visually stunning mouse hover effects to promote your products and services. The power of Spectrum is waiting to be unleashed on your next project.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422960628218{border-bottom-width: 6px !important;padding-top: 400px !important;padding-bottom: 350px !important;background: #f5f5f5 url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/tress1.jpg?id=906) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.4\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"false\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-top-style2\" engle_color_style2=\"#ffffff\" enable_engle_style2=\"false\" bg_video_color=\"#020202\"][vc_column width=\"1/1\" font_color=\"#ffffff\" text_align=\"center\"][vc_column_text]\n<h1 style=\"color: #ffffff; text-align: center;\">IMAGE PARALLAX BACKGROUNDS</h1>\n<h3 style=\"font-weight: 300; color: #ffffff; text-align: center;\">Create visually stunning rows with angled borders that work perfect with image parallax effects.</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422960863952{padding-top: 240px !important;padding-bottom: 230px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"50px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.3\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" loop=\"1\" autoplay=\"1\" muted=\"1\" bg_video_src_mp4=\"http://www.red-ferndevelopment.co.uk/HighRockColors.mp4\" bg_video_src_webm=\"http://www.red-ferndevelopment.co.uk/HighRockColors.webm\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\" bg_video_color=\"#020202\" disable_parallax_mobile=\"false\"][vc_column width=\"1/1\" font_color=\"#ffffff\" text_align=\"center\"][vc_column_text]\n<h1 style=\"color: #ffffff; text-align: center;\">VIDEO PARALLAX BACKGROUNDS</h1>\n<h3 style=\"font-weight: 300; color: #ffffff; text-align: center;\">Give a unique user experience with video backgrounds.</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421247507457{padding-top: 80px !important;padding-bottom: 120px !important;background-color: #ffffff !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"ww-custom\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"60\" text_style=\"none\" icon=\" fa-clock-o\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"4\" text_style=\"none\" icon=\"fa-group\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"124\" text_style=\"none\" icon=\"fa-heart\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY CLIENTS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"7\" text_style=\"none\" icon=\"fa-github-alt\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"CATS &amp; DOGS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421242562281{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #222222 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"THE NEXT GENERATION OF WORDPRESS THEME HAS ARRIVED\" call_text_font_size=\"22px\" call_text_color=\"#ffffff\" title=\"Purchase Spectrum Now!\" target=\"_blank\" button_type=\"btn-default\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row]", "Parallax Dream", "", "inherit", "open", "open", "", "1570-revision-v1", "", "", "2015-02-03 10:54:26", "2015-02-03 10:54:26", "", "0", "http://localhost/mdeal2/?p=1745", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1748", "1", "2015-02-03 10:58:47", "2015-02-03 10:58:47", "[vc_row css=\".vc_custom_1421071383504{padding-top: 0px !important;padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/2\"][vc_empty_space height=\"20px\"][vc_column_text]<img class=\"alignnone size-full wp-image-10338\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-omnia/wp-content/uploads/2014/11/essentialgridpic1.jpg\" alt=\"essentialgridpic1\" width=\"569\" height=\"289\" />[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_column_text]\n<h2>The POWER of Essential Grid</h2>\nEssential Grid is the latest stunning plugin for wordpress by our friends over at ThemePunch, the creators of the most popular wordpress slideshow, Slider Revolution.\n\nEssential Grid is an all-in-one plugin that allows you to create stunning grid based blogs and portfolios, with an unlimited number of styling and layout possibilities.\n\nThe plugin comes with tons of predefined options and also gives you the ability to design and edit your very own styles and layouts with the easy to use control panel.[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1416936161931{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_video link=\"http://www.youtube.com/watch?v=Ng9YeN1g6sk\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422961120555{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #222222 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"JOIN OUR 3500+ HAPPY CUSTOMERS\" call_text_font_size=\"24px\" call_text_color=\"#fff\" title=\"BUY SPECTRUM NOW!\" target=\"_blank\" button_type=\"btn-default\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row]", "Create Your Own Style", "", "inherit", "open", "open", "", "1139-revision-v1", "", "", "2015-02-03 10:58:47", "2015-02-03 10:58:47", "", "0", "http://localhost/mdeal2/?p=1748", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1760", "1", "2015-02-03 11:36:37", "2015-02-03 11:36:37", "[vc_row full_width=\"false\" height_engle=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.6\" css=\".vc_custom_1422961760989{padding-top: 80px !important;padding-bottom: 100px !important;background-color: #ffffff !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" engle_position=\"engle-bottom-right\" engle_color=\"rgba(255,255,255,0.01)\" font_color=\"#222222\" row_head_color=\"#222222\" bg_video_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_position_style2=\"engle-bottom-style2\" height_engle_style2=\"120px\" engle_color_style2=\"#ffffff\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" enable_parallax=\"false\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" text_align=\"center\"][vc_column_text]\n<h1>SHORTCODES &amp; ELEMENTS</h1>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Spectrum has been built from the ground up with optimized shortcodes and visual composer elements, giving you all the perfect tools for building multiple bespoke projects.</p>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Keep scrolling down this page and get the full effect of how powerful Spectrum really is.</p>\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_text_separator title=\"REMEMBER, YOU CAN MIX &amp; MATCH ALL OF THESE ELEMENTS ON ANY OF YOUR PAGES\" title_align=\"separator_align_center\" color=\"custom\" border_width=\"1\" heading_size=\"h5\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"100px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" css=\".vc_custom_1421154090623{padding-top: 80px !important;padding-bottom: 620px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/elementsmac1.jpg?id=1397) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1=\"687\" lax_layer1_width=\"308px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2=\"688\" lax_layer2_width=\"300px\" lax_layer2_height=\"352px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3=\"689\" lax_layer3_width=\"150px\" lax_layer3_height=\"272px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" lax_layer4=\"690\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5=\"680\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6=\"683\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-400px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-250px\" type=\"ww-custom\" enable_row_engle=\"false\" engle_position=\"engle-bottom-right\" engle_color=\"#ffffff\"][vc_column width=\"1/6\" text_align=\"center\" column_style=\"title-feature-box\"][/vc_column][vc_column width=\"2/3\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">MOUSE HOVER</h3>\n<h1 style=\"margin-top: 0px;\">PARALLAX EFFECTS</h1>\n[/vc_column_text][vc_column_text]Create visual mouse move and scroll effects with\nthe parallax control panel.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.4\" type=\"ww-custom\" engle_position=\"engle-top-left\" engle_color=\"#ffffff\" font_color=\"#222222\" row_head_color=\"#222222\" enable_parallax=\"false\" bg_video_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" height_engle_style2=\"60px\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1421154185451{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/2\" text_align=\"left\" css=\".vc_custom_1417822621673{padding-top: 250px !important;padding-bottom: 250px !important;}\"][vc_column_text]\n<h1>TABS</h1>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Deliver more detailed content on your pages in spectrums unique tab styling.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"Style One\" font_container=\"tag:h2|font_size:40px|text_align:left|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][vc_tabs style=\"style1\" interval=\"0\" tab_border_color=\"#e9e9ec\" tab_border_color_active=\"#e6007e\"][vc_tab title=\"TAB 1\" tab_id=\"1417768007-1-72\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][vc_tab title=\"TAB 2\" tab_id=\"1417768007-2-32\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][vc_tab title=\"TAB 3\" tab_id=\"1417822304502-2-0\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][vc_tab title=\"TAB 4\" tab_id=\"1417822315968-3-0\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"32px\"][vc_custom_heading text=\"Style Two\" font_container=\"tag:h2|font_size:40px|text_align:left|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][vc_tabs style=\"style2\" interval=\"0\" tab_border_color=\"#e9e9ec\" tab_border_color_active=\"#e6007e\"][vc_tab title=\"TAB 1\" tab_id=\"1417822364668-0-0\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][vc_tab title=\"TAB 2\" tab_id=\"1417822365064-0-2\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][vc_tab title=\"TAB 3\" tab_id=\"1417822365447-0-6\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][vc_tab title=\"TAB 4\" tab_id=\"1417822365828-0-10\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.5\" css=\".vc_custom_1421154336748{padding-top: 130px !important;padding-bottom: 180px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Laptop1.jpg?id=1313) !important;}\" type=\"ww-custom\" enable_row_engle=\"false\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" font_color=\"#222222\" row_head_color=\"#222222\" enable_parallax=\"false\" bg_video_color=\"#ffffff\" enable_engle_duplicate=\"false\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"100px\" engle_duplicated_color=\"#ffffff\" height_engle_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/2\" text_align=\"left\"][vc_custom_heading text=\"Style One\" font_container=\"tag:h2|font_size:40px|text_align:left|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" layout=\"progressbar.layout1\" title=\"WEB DEVELOPMENT\" title_color=\"#222222\" title_margin=\"0 0 15px 0\" bg_color=\"#ffffff\" color=\"#e6007e\" value=\"80\" label_value=\"%\" height=\"12px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" layout=\"progressbar.layout1\" title=\"BRANDING\" title_color=\"#222222\" title_margin=\"0 0 15px 0\" bg_color=\"#ffffff\" color=\"#e6007e\" value=\"60\" label_value=\"%\" height=\"12px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" layout=\"progressbar.layout1\" title=\"MARKETING\" title_color=\"#222222\" title_margin=\"0 0 15px 0\" bg_color=\"#ffffff\" color=\"#e6007e\" value=\"95\" label_value=\"%\" height=\"12px\"][vc_empty_space height=\"52px\"][vc_custom_heading text=\"Style Two\" font_container=\"tag:h2|font_size:40px|text_align:left|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" layout=\"progressbar.layout2\" title=\"MARKETING\" title_color=\"#222222\" title_margin=\"0 0 15px 0\" bg_color=\"#ffffff\" color=\"#e6007e\" value=\"75\" label_value=\"%\" height=\"33px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" layout=\"progressbar.layout2\" title=\"MARKETING\" title_color=\"#222222\" title_margin=\"0 0 15px 0\" bg_color=\"#ffffff\" color=\"#e6007e\" value=\"83\" label_value=\"%\" height=\"33px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" layout=\"progressbar.layout2\" title=\"MARKETING\" title_color=\"#222222\" title_margin=\"0 0 15px 0\" bg_color=\"#ffffff\" color=\"#e6007e\" value=\"95\" label_value=\"%\" height=\"33px\"][/vc_column][vc_column width=\"1/2\" text_align=\"right\" css=\".vc_custom_1417820798210{padding-top: 250px !important;padding-bottom: 250px !important;}\"][vc_column_text]\n<h1>PROGRESS BARS</h1>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Inform you website visitors of statistics and skill levels with these stunning visual progress bars.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.6\" css=\".vc_custom_1421240023531{padding-top: 10px !important;padding-bottom: 10px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" engle_position=\"engle-bottom-right\" engle_color=\"rgba(255,255,255,0.01)\" font_color=\"#222222\" row_head_color=\"#222222\" bg_video_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_position_style2=\"engle-bottom-style2\" height_engle_style2=\"120px\" engle_color_style2=\"#ffffff\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" enable_parallax=\"false\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/2\" text_align=\"left\"][vc_empty_space height=\"120px\"][vc_column_text]\n<h1>CONTROL ANGLES</h1>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Make your new wordpress project stand out from the crowd and don’t fade into the background.</p>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Spectrum allows you to control the angles, colors, images and borders of all your visual composer rows with an easy to use control panel.</p>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Create new and exciting layouts which don’t just look like every other wordpress site.</p>\n[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"1542\" alignment=\"center\" border_color=\"grey\" img_link_target=\"_self\" img_size=\"581x635\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.5\" css=\".vc_custom_1422962050768{padding-top: 180px !important;padding-bottom: 220px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/FORESTMANLARGE.jpg?id=1408) !important;}\" type=\"ww-custom\" enable_row_engle=\"false\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" font_color=\"#222222\" enable_parallax=\"false\" bg_video_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"50px\" engle_color_style2=\"#ffffff\" enable_engle_style2=\"false\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"2/3\" text_align=\"center\"][vc_custom_heading text=\"Style One\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/3\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" border_style=\"solid\" layout=\"progressbar.layout3\" title=\"BUSINESS GROWTH\" title_color=\"#ffffff\" value=\"90\" label_value=\"%\" bg_color=\"rgba(255,255,255,0.41)\" color=\"#e6007e\" width=\"150px\" height=\"150px\" border_width=\"4px\" border_color=\"#ffffff\" border_radius=\"100%\" vertical=\"false\"][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" border_style=\"solid\" layout=\"progressbar.layout3\" title=\"PROFIT INCREASE\" title_color=\"#ffffff\" value=\"85\" label_value=\"%\" bg_color=\"rgba(255,255,255,0.41)\" color=\"#e6007e\" width=\"150px\" height=\"150px\" border_width=\"4px\" border_color=\"#ffffff\" border_radius=\"100%\" vertical=\"false\"][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" show_value=\"true\" border_style=\"solid\" layout=\"progressbar.layout3\" title=\"CUSTOMER ENGAGEMENT\" title_color=\"#ffffff\" value=\"65\" label_value=\"%\" bg_color=\"rgba(255,255,255,0.41)\" color=\"#e6007e\" width=\"150px\" height=\"150px\" border_width=\"4px\" border_color=\"#ffffff\" border_radius=\"100%\" vertical=\"false\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_custom_heading text=\"Style Two\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_pie value=\"88\" heading_size=\"h4\" icon_color=\"#888888\" color=\"#e6007e\" pie_width=\"10\" desc=\"At vero eos et accusamus et iusto odio dignissimos.\" style=\"style1\" title=\"BUSINESS GROWTH\" title_color=\"#222222\" units=\"%\" icon_size=\"24\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_pie value=\"78\" heading_size=\"h4\" icon_color=\"#888888\" color=\"#e6007e\" pie_width=\"10\" desc=\"At vero eos et accusamus et iusto odio dignissimos.\" style=\"style1\" title=\"CORPORATE MANAGMENT\" title_color=\"#222222\" units=\"%\" icon_size=\"24\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_pie value=\"67\" heading_size=\"h4\" icon_color=\"#888888\" color=\"#e6007e\" pie_width=\"10\" desc=\"At vero eos et accusamus et iusto odio dignissimos.\" style=\"style1\" title=\"HAPPY STAFF\" title_color=\"#222222\" units=\"%\" icon_size=\"24\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_custom_heading text=\"Style Three\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/3\"][cshero-progressbar title_size=\"h4\" show_value=\"true\" border_style=\"solid\" layout=\"progressbar.layout4\" title=\"HAPPY STAFF\" title_color=\"#222222\" value=\"82\" label_value=\"%\" bg_color=\"#ffffff\" color=\"#e6007e\" width=\"150px\" height=\"150px\" border_width=\"4px\" border_color=\"#ffffff\" border_radius=\"100%\" vertical=\"false\" show_title=\"1\" desc=\"At vero eos et accusamus et iusto odio dignissimos.\" desc_color=\"#222222\" title_margin=\"25px 15px 15px 15px\"][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-progressbar title_size=\"h4\" show_value=\"true\" border_style=\"solid\" layout=\"progressbar.layout4\" title=\"BUSINESS GROWTH\" title_color=\"#222222\" value=\"78\" label_value=\"%\" bg_color=\"#ffffff\" color=\"#e6007e\" width=\"150px\" height=\"150px\" border_width=\"4px\" border_color=\"#ffffff\" border_radius=\"100%\" vertical=\"false\" show_title=\"1\" desc=\"At vero eos et accusamus et iusto odio dignissimos.\" desc_color=\"#222222\" title_margin=\"25px 15px 15px 15px\"][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-progressbar title_size=\"h4\" show_value=\"true\" border_style=\"solid\" layout=\"progressbar.layout4\" title=\"HAPPY CLIENTS\" title_color=\"#222222\" value=\"92\" label_value=\"%\" bg_color=\"#ffffff\" color=\"#e6007e\" width=\"150px\" height=\"150px\" border_width=\"4px\" border_color=\"#ffffff\" border_radius=\"100%\" vertical=\"false\" show_title=\"1\" desc=\"At vero eos et accusamus et iusto odio dignissimos.\" desc_color=\"#222222\" title_margin=\"25px 15px 15px 15px\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/3\" text_align=\"right\" css=\".vc_custom_1418316428334{padding-top: 300px !important;padding-bottom: 300px !important;}\"][vc_column_text]\n<h1>COUNTER</h1>\n<h1>GRAPHICS</h1>\n<p style=\"font-size: 20px; line-height: 35px; font-weight: 300;\">Visually engage your customers with spectrums power. Easily create graphical displays of data.</p>\n[/vc_column_text][vc_empty_space height=\"90px\"][vc_button title=\"PURCHASE SPECTRUM NOW\" target=\"_blank\" type=\"btn btn-default btn-default-alt\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\" size=\"btn-xs btn-mini\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422961330864{padding-bottom: 40px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" text_align=\"center\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Remember\" font_container=\"tag:h2|font_size:74px|text_align:center|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">You can <span style=\"font-weight: 400;\">mix and match</span> any of these elements on all of your wordpress projects using the <span style=\"font-weight: 400;\">power of spectrum</span></p>\n[/vc_column_text][vc_empty_space height=\"30px\"][vc_button title=\"PURCHASE SPECTRUM NOW\" target=\"_blank\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422961648520{border-bottom-width: 6px !important;padding-top: 240px !important;padding-bottom: 240px !important;background: #f5f5f5 url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/videostacks.jpg?id=1623) !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"50px\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"false\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" enable_engle_style2=\"false\" engle_position_style2=\"engle-top-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/2\" font_color=\"#ffffff\" text_align=\"right\"][vc_column_text]\n<h1 style=\"color: #fff;\">IMAGE PARALLAX BACKGROUNDS</h1>\n<h3 style=\"font-weight: 300; color: #fff;\">Create visually stunning rows with angled borders that work perfect with image parallax effects.</h3>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" text_align=\"left\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422961639835{padding-top: 240px !important;padding-bottom: 240px !important;background: #f5f5f5 url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/elementshouseparallax3.jpg?id=1416) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"50px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.3\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" loop=\"1\" autoplay=\"1\" muted=\"1\" bg_video_src_mp4=\"http://www.red-ferndevelopment.co.uk/HighRockColors.mp4\" bg_video_src_webm=\"http://www.red-ferndevelopment.co.uk/HighRockColors.webm\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\" bg_video_color=\"#020202\"][vc_column width=\"1/2\" font_color=\"#ffffff\" text_align=\"right\"][/vc_column][vc_column width=\"1/2\" text_align=\"left\"][vc_column_text]\n<h1 style=\"color: #fff;\">VIDEO PARALLAX BACKGROUNDS</h1>\n<h3 style=\"font-weight: 300; color: #fff;\">Give a unique user experience with video backgrounds.</h3>\n[/vc_column_text][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#f5f5f5\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" css=\".vc_custom_1418320512435{padding-right: 200px !important;padding-left: 200px !important;}\" font_color=\"#222222\"][vc_empty_space height=\"60px\"][cshero-testimonial heading_size=\"h1\" heading_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" show_nav=\"1\" nav_align=\"text-center\" show_pager=\"0\" pager_align=\"pager-center text-center\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" title=\"Testimonial Carousel\" heading_color=\"#222222\" category=\"5\" width_item=\"1000\" width_image=\"150\" height_image=\"150\" image_border=\"100%\" description=\"Wow potential customers with your greatest reviews!\" item_title_heading=\"h5\" content_color=\"#888888\" speed_scroll=\"500\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_style=\"default\"][vc_empty_space height=\"250px\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-left\" height_engle=\"250px\" engle_color=\"#ffffff\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" css=\".vc_custom_1418321453487{background-color: #f5f5f5 !important;}\" engle_uplicated_height=\"60px\"][vc_column width=\"1/1\" text_align=\"center\" font_color=\"#222222\"][vc_column_text]\n<h1>HAPPY CLIENTS</h1>\n<h3 style=\"font-weight: 300;\">Over <span class=\"color-primary\">2500</span> extremely satisfied customers!</h3>\n[/vc_column_text][vc_empty_space height=\"30px\"][cshero-testimonial heading_size=\"h1\" heading_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" show_nav=\"1\" nav_align=\"text-center\" show_pager=\"0\" pager_align=\"pager-center text-center\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#222222\" category=\"5\" width_item=\"1000\" width_image=\"230\" height_image=\"230\" image_border=\"100%\" item_title_heading=\"h5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422962123803{padding-top: 320px !important;padding-bottom: 320px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/tress1.jpg?id=906) !important;}\" type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-top-left\" height_engle=\"250px\" engle_color=\"#f5f5f5\" enable_engle_duplicate=\"false\" engle_position_duplicate=\"engle-bottom-left\" engle_uplicated_height=\"250px\" engle_duplicated_color=\"#ffffff\" height_engle_style2=\"60px\" enable_parallax=\"false\" parallax_speed=\"0.6\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.6\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/2\"][vc_accordion title_align=\"left\"][vc_accordion_tab title=\"ACCORDIAN TITLE 1\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"ACCORDIAN TITLE 2\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"ACCORDIAN TITLE 3\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\"ACCORDIAN TITLE 4\"][vc_column_text]\n<h4>SERVICE NUMBER ONE</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][vc_column width=\"1/2\" text_align=\"right\" column_style=\"title-sub\" font_color=\"#222222\" css=\".vc_custom_1422962401995{padding-top: 100px !important;}\"][vc_column_text]\n<h4>DISPLAYING CONTENT IS EASY</h4>\n<h1>ACCORDIANS</h1>\n<p style=\"font-size: 20px;\">No matter what project you have in mind, our creative team start at the beginning of your journey, then develop your idea into an amazing piece of reality...</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422962952969{padding-top: 80px !important;padding-bottom: 300px !important;}\" type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#f5f5f5\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/2\" text_align=\"left\" column_style=\"title-sub\" font_color=\"#222222\"][vc_column_text]\n<h4>WHO DO YOU WORK FOR?</h4>\n<h1>CLIENT CAROUSEL</h1>\n<p style=\"font-size: 20px;\">Let the world know who you are working for and win that next project.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"4\" item_slide=\"4\" width_item=\"120\" margin_item=\"20\" auto_scroll=\"0\" speed=\"500\" show_nav=\"1\" nav_align=\"text-center\" show_pager=\"0\" pager_align=\"pager-left\" crop_image=\"1\" width_image=\"140\" height_image=\"110\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"0\" category=\"11\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422963018671{background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"50px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" type=\"ww-custom\" engle_position=\"engle-bottom-right\" engle_color=\"#f5f5f5\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/1\"][cshero-team heading_size=\"h1\" heading_align=\"text-center\" heading_text_style=\"uppercase\" subtitle_heading_size=\"div\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"2000\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" content_align=\"text-center\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_team_position=\"1\" show_team_qualification=\"1\" show_team_experience=\"1\" show_team_contact_info=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" title=\"TEAM DISPLAYS\" heading_color=\"#222222\" description=\"Tell the world who your amazing team is with spectrums easy to use team display element\" category=\"4,23,24\" width_item=\"300\" margin_item=\"100\" min_slide=\"1\" max_slide=\"3\" title_team_color=\"#888888\" item_heading_size=\"h4\" category_color=\"#888888\" social_color=\"#888888\" social_hover_color=\"#ea008c\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" item_bg_color_hover=\"#eeeeee\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422963045930{padding-top: 100px !important;padding-bottom: 80px !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-top-right\" height_engle=\"250px\" engle_color=\"#f5f5f5\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" text_align=\"center\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title=\"PRICING TABLES\" title_color=\"#222222\" title_pricing_color=\"#222222\" category=\"10\" sub_title=\"HOW MUCH DOES IT COST?\" sub_heading_size=\"h4\" sub_title_color=\"#222222\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421167383112{padding-top: 200px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"100px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" type=\"ww-custom\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"false\" engle_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/1\"][vc_custom_heading text=\"3 STYLES OF SERVICE ICONS\" font_container=\"tag:h2|font_size:57px|text_align:center|color:%23222222|line_height:53px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"Style One\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"40px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418343429513{padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/3\" css=\".vc_custom_1421272581615{padding-top: 15px !important;}\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"70px\" icon_heigth=\"70px\" icon_bg_color=\"#c5c5c5\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1421272591095{padding-top: 15px !important;}\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"AMAZING SUPPORT\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-comments-o\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"70px\" icon_heigth=\"70px\" icon_bg_color=\"#c5c5c5\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" button_type=\"btn-default\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1421272601245{padding-top: 15px !important;}\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"FRESH IDEAS\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-cogs\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"70px\" icon_heigth=\"70px\" icon_bg_color=\"#c5c5c5\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" button_type=\"btn-default\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1421167506438{padding-bottom: 100px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"\nh4\" title_transform=\"uppercase\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"PIXEL PERFECT\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-bell\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"70px\" icon_heigth=\"70px\" icon_bg_color=\"#c5c5c5\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" button_type=\"btn-default\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"NEW WEB TRENDS\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-camera\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"70px\" icon_heigth=\"70px\" icon_bg_color=\"#c5c5c5\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" button_type=\"btn-default\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"RESPONSIVE DESIGN\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-bullhorn\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"70px\" icon_heigth=\"70px\" icon_bg_color=\"#c5c5c5\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" button_type=\"btn-default\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1422963105712{padding-top: 60px !important;padding-bottom: 60px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-parallax1.jpg?id=98) !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-top-right\" height_engle=\"250px\" engle_color=\"#f5f5f5\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"250px\" engle_duplicated_color=\"#ffffff\" height_engle_style2=\"100px\" enable_parallax=\"false\" parallax_speed=\"0.6\" bg_video_color=\"#000000\" bg_video_transparent=\"0.8\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"false\" engle_position_style2=\"engle-top-style1\" engle_color_style2=\"#f5f5f5\" engle_duplicated_height_style2=\"100px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" enable_engle_duplicated_style2=\"false\" engle_duplicated_position_style2=\"engle-bottom-style1\" engle_duplicated_color_style2=\"#ffffff\"][vc_column width=\"1/1\"][vc_empty_space height=\"100px\"][vc_custom_heading text=\"Style Three\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23ffffff\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"40px\"][vc_row_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#ffffff\" title_color_hover=\"#ffffff\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"120px\" icon_heigth=\"120px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#ffffff\" border_color=\"#ffffff\" border_color_hover=\"#e6007e\" border_width=\"3px\" title_margin=\"20px 0 10px 0\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#ffffff\" title_color_hover=\"#ffffff\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"120px\" icon_heigth=\"120px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#ffffff\" border_color=\"#ffffff\" border_color_hover=\"#e6007e\" border_width=\"3px\" title_margin=\"20px 0 10px 0\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#ffffff\" title_color_hover=\"#ffffff\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"120px\" icon_heigth=\"120px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#ffffff\" border_color=\"#ffffff\" border_color_hover=\"#e6007e\" border_width=\"3px\" title_margin=\"20px 0 10px 0\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#ffffff\" title_color_hover=\"#ffffff\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"120px\" icon_heigth=\"120px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#ffffff\" border_color=\"#ffffff\" border_color_hover=\"#e6007e\" border_width=\"3px\" title_margin=\"20px 0 10px 0\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#ffffff\" title_color_hover=\"#ffffff\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"120px\" icon_heigth=\"120px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#ffffff\" border_color=\"#ffffff\" border_color_hover=\"#e6007e\" border_width=\"3px\" title_margin=\"20px 0 10px 0\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#ffffff\" title_color_hover=\"#ffffff\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"120px\" icon_heigth=\"120px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#ffffff\" border_color=\"#ffffff\" border_color_hover=\"#e6007e\" border_width=\"3px\" title_margin=\"20px 0 10px 0\"]Sed ut perspiciatis unde omnis ist\ne natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-top-right\" height_engle=\"250px\" engle_color=\"#f5f5f5\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"250px\" engle_duplicated_color=\"#ffffff\" height_engle_style2=\"60px\" parallax_speed=\"0.6\" bg_video_color=\"#000000\" bg_video_transparent=\"0.8\" css=\".vc_custom_1421167779950{padding-top: 100px !important;}\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_custom_heading text=\"Style Two\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"40px\"][vc_row_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"130px\" icon_heigth=\"130px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" title_margin=\"20px 0 10px 0\" icon_bg_color=\"#222222\" link_show_more=\"#\" read_more=\"BUY NOW\" read_more_margin=\"20px 0 0 0\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"btn-xs\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"130px\" icon_heigth=\"130px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" title_margin=\"20px 0 10px 0\" icon_bg_color=\"#222222\" link_show_more=\"#\" read_more=\"BUY NOW\" read_more_margin=\"20px 0 0 0\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"btn-xs\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"130px\" icon_heigth=\"130px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" title_margin=\"20px 0 10px 0\" icon_bg_color=\"#222222\" link_show_more=\"#\" read_more=\"BUY NOW\" read_more_margin=\"20px 0 0 0\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"btn-xs\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"130px\" icon_heigth=\"130px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" title_margin=\"20px 0 10px 0\" icon_bg_color=\"#222222\" link_show_more=\"#\" read_more=\"BUY NOW\" read_more_margin=\"20px 0 0 0\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"btn-xs\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"130px\" icon_heigth=\"130px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" title_margin=\"20px 0 10px 0\" icon_bg_color=\"#222222\" link_show_more=\"#\" read_more=\"BUY NOW\" read_more_margin=\"20px 0 0 0\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"btn-xs\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"uppercase\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" title=\"STUNNING THEMES\" title_color=\"#222222\" title_color_hover=\"#222222\" icon_title=\"fa-trophy\" icon_size=\"38px\" icon_color=\"#ffffff\" icon_color_hover=\"#ffffff\" icon_width=\"130px\" icon_heigth=\"130px\" icon_bg_color_hover=\"#e6007e\" border_radius=\"100%\" content_color=\"#222222\" title_margin=\"20px 0 10px 0\" icon_bg_color=\"#222222\" link_show_more=\"#\" read_more=\"BUY NOW\" read_more_margin=\"20px 0 0 0\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"btn-xs\"]Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422963154065{padding-top: 20px !important;padding-bottom: 60px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio23.jpg?id=1233) !important;}\" type=\"ww-custom\" full_width=\"false\" height_engle=\"60px\" engle_uplicated_height=\"60px\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style2\" height_engle_style2=\"140px\" engle_color_style2=\"#ffffff\" enable_parallax=\"false\" parallax_speed=\"0.7\" bg_video_transparent=\"0.6\" enable_engle_duplicated_style2=\"false\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"140px\" engle_duplicated_color_style2=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" bg_video_color=\"#ffffff\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" font_color=\"#222222\" text_align=\"center\"][vc_empty_space height=\"210px\"][vc_custom_heading text=\"Endless Possibilities\" font_container=\"tag:h2|font_size:73px|text_align:center|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_column_text]\n<div style=\"font-size: 33px; line-height: 48px; font-weight: 300;\">If your still not convinced Spectrum has all the features you need, keep on scrolling to see even more.</div>\n[/vc_column_text][vc_empty_space height=\"80px\"][vc_button title=\"CLICK HERE TO PURCHASE SPECTRUM NOW\" target=\"_blank\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][vc_empty_space height=\"80px\"][vc_column_text]\n<div style=\"font-size: 33px; line-height: 48px; font-weight: 300;\">Create a unique website every time you use Spectrum.\nControl angled rows and lines to create unique\nand bespoke websites.</div>\n[/vc_column_text][vc_empty_space height=\"210px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\n<h4 style=\"text-align: center;\">GETTING SOME LEADS</h4>\n<h1 style=\"text-align: center;\">BUTTON STYLES</h1>\n[/vc_column_text][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Style One\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"30px\"][vc_button title=\"LARGE\" target=\"_self\" type=\"btn btn-default\" size=\"btn-lg btn-large\" href=\"#\" button_block=\"true\"][vc_empty_space height=\"25px\"][vc_button title=\"MEDIUM\" target=\"_self\" type=\"btn btn-default\" size=\"btn-md btn-medium\" href=\"#\"][vc_empty_space height=\"25px\"][vc_button title=\"SMALL\" target=\"_self\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Style Two\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"30px\"][vc_button title=\"LARGE\" target=\"_self\" type=\"btn btn-default\" size=\"btn-lg btn-large\" href=\"#\" button_icon=\"fa-info-circle \" button_block=\"true\"][vc_empty_space height=\"25px\"][vc_button title=\"MEDIUM\" target=\"_self\" type=\"btn btn-default\" size=\"btn-md btn-medium\" href=\"#\" button_icon=\"fa-info-circle \"][vc_empty_space height=\"25px\"][vc_button title=\"SMALL\" target=\"_self\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"#\" button_icon=\"fa-info-circle \"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Style Three\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"30px\"][vc_button title=\"LARGE\" target=\"_self\" type=\"btn btn-primary\" size=\"btn-lg btn-large\" href=\"#\" button_block=\"true\"][vc_empty_space height=\"25px\"][vc_button title=\"MEDIUM\" target=\"_self\" type=\"btn btn-primary\" size=\"btn-md btn-medium\" href=\"#\"][vc_empty_space height=\"25px\"][vc_button title=\"SMALL\" target=\"_self\" type=\"btn btn-primary\" size=\"btn-sm btn-small\" href=\"#\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422963303701{padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" font_color=\"#222222\" column_style=\"title-sub\"][vc_empty_space height=\"130px\"][vc_column_text]\n<h4 style=\"text-align: center;\">COMPANY TIMELINES OR</h4>\n<h1 style=\"text-align: center;\">PRODUCTION PROCESSES</h1>\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Horizontal\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"40px\"][cs-process title_heading_size=\"h4\" icon1=\"fa-cogs \" title1=\"YEAR 1998\" desc1=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon2=\"fa-cogs \" title2=\"YEAR 2002\" desc2=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon3=\"fa-cogs \" title3=\"YEAR 2007\" desc3=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon4=\"fa-cogs \" title4=\"YEAR 2010\" desc4=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon_font_size=\"38px\" icon_color=\"#fff\" icon_background=\"#c5c5c5\" icon_width=\"70px\" icon_height=\"70px\" icon_border_radius=\"100%\" title_color=\"#222\" layout=\"process.default\"][vc_empty_space height=\"80px\"][vc_button title=\"PURCHASE SPECTRUM NOW\" target=\"_blank\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\" button_align=\"right\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422963313083{padding-top: 80px !important;padding-bottom: 80px !important;}\" type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-top-right\" height_engle=\"100px\" engle_color=\"#f5f5f5\" engle_uplicated_height=\"60px\" height_engle_style2=\"100px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#222222\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#f5f5f5\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/2\"][vc_custom_heading text=\"Vertical Style One\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"80px\"][cs-process title_heading_size=\"h4\" icon1=\"fa-cogs \" title1=\"PROCESS 1\" desc1=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem\" icon2=\"fa-cogs \" title2=\"PROCESS 2\" desc2=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem\" icon3=\"fa-cogs \" title3=\"PROCESS 3\" desc3=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem\" icon4=\"fa-cogs \" title4=\"PROCESS 4\" desc4=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem\" icon_font_size=\"38px\" icon_color=\"#fff\" icon_background=\"#c5c5c5\" icon_width=\"70px\" icon_height=\"70px\" icon_border_radius=\"100%\" title_color=\"#222\" layout=\"process.layout1\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1418490190198{padding-left: 120px !important;}\"][vc_custom_heading text=\"Vertical Style Two\" font_container=\"tag:h2|font_size:40px|text_align:center|color:%23222222\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"80px\"][cs-process title_heading_size=\"h4\" icon1=\"fa-cogs \" title1=\"PROCESS 1\" desc1=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon2=\"fa-cogs \" title2=\"PROCESS 2\" desc2=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon3=\"fa-cogs \" title3=\"PROCESS 3\" desc3=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon4=\"fa-cogs \" title4=\"PROCESS 4\" desc4=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam.\" icon_font_size=\"38px\" icon_color=\"#fff\" icon_background=\"#c5c5c5\" icon_width=\"70px\" icon_height=\"70px\" icon_border_radius=\"100%\" title_color=\"#222\" layout=\"process.layout2\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421237229722{padding-top: 70px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\n<h4 style=\"text-align: center;\">VISUAL</h4>\n<h1 style=\"text-align: center;\">DATA DISPLAYS</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421237896392{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_text_separator title=\"FULL PIE CHARTS\" title_align=\"separator_align_center\" color=\"custom\" border_width=\"1\" heading_size=\"h3\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421237121362{padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" type=\"ww-custom\" engle_position=\"engle-top-right\" height_engle=\"100px\" engle_color=\"#ffffff\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cs-piechart title_tag=\"h4\" type=\"pie\" inner_cutout=\"0\" style=\"1\" title=\"STUNNING THEMES\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\" width=\"176\" height=\"176\" values=\"{\'value\':15,\'color\':\'#222222\',\'highlight\':\'#222222\',\'label\':\'Legend One\'},{\'value\':35,\'color\':\'#ec008c\',\'highlight\':\'#ec008c\',\'label\':\'Legend Two\'},{\'value\':50,\'color\':\'#e9e9e9\',\'highlight\':\'#e9e9e9\',\'label\':\'Legend Three\'}\"][/vc_column][vc_column width=\"1/3\"][cs-piechart type=\"pie\" title=\"WORDPRESS DEVELOPMENT\" style=\"2\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\" title_tag=\"h4\" width=\"176\" height=\"176\" inner_cutout=\"0\" values=\"{\'value\':35,\'color\':\'#222222\',\'highlight\':\'#222222\',\'label\':\'Legend One\'},{\'value\':45,\'color\':\'#ec008c\',\'highlight\':\'#ec008c\',\'label\':\'Legend Two\'},{\'value\':20,\'color\':\'#e9e9e9\',\'highlight\':\'#e9e9e9\',\'label\':\'Legend Three\'}\"][/vc_column][vc_column width=\"1/3\"][cs-piechart type=\"pie\" values=\"{\'value\':52,\'color\':\'#222222\',\'highlight\':\'#222222\',\'label\':\'Legend One\'},{\'value\':18,\'color\':\'#ec008c\',\'highlight\':\'#ec008c\',\'label\':\'Legend Two\'},{\'value\':30,\'color\':\'#e9e9e9\',\'highlight\':\'#e9e9e9\',\'label\':\'Legend Three\'}\" title=\"HAPPY STAFF\" style=\"3\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\" title_tag=\"h4\" width=\"176\" height=\"176\" inner_cutout=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421237343568{padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_text_separator title=\"DOUGHNUT PIE CHARTS\" title_align=\"separator_align_center\" color=\"custom\" border_width=\"1\" heading_size=\"h3\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421237343568{padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cs-piechart type=\"doughnut\" values=\"{\'value\':15,\'color\':\'#222222\',\'highlight\':\'#222222\',\'label\':\'Legend One\'},{\'value\':35,\'color\':\'#ec008c\',\'highlight\':\'#ec008c\',\'label\':\'Legend Two\'},\n{\'value\':50,\'color\':\'#e9e9e9\',\'highlight\':\'#e9e9e9\',\'label\':\'Legend Three\'}\" title=\"STUNNING THEMES\" style=\"1\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\" title_tag=\"h4\" width=\"176\" height=\"176\" inner_cutout=\"60\"][/vc_column][vc_column width=\"1/3\"][cs-piechart type=\"doughnut\" values=\"{\'value\':32,\'color\':\'#222222\',\'highlight\':\'#222222\',\'label\':\'Legend One\'},{\'value\':41,\'color\':\'#ec008c\',\'highlight\':\'#ec008c\',\'label\':\'Legend Two\'},\n{\'value\':27,\'color\':\'#e9e9e9\',\'highlight\':\'#e9e9e9\',\'label\':\'Legend Three\'}\" title=\"WORDPRESS DEVELOPMENT\" style=\"2\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\" title_tag=\"h4\" width=\"176\" height=\"176\" inner_cutout=\"60\"][/vc_column][vc_column width=\"1/3\"][cs-piechart type=\"doughnut\" values=\"{\'value\':25,\'color\':\'#222222\',\'highlight\':\'#222222\',\'label\':\'Legend One\'},{\'value\':45,\'color\':\'#ec008c\',\'highlight\':\'#ec008c\',\'label\':\'Legend Two\'},\n{\'value\':30,\'color\':\'#e9e9e9\',\'highlight\':\'#e9e9e9\',\'label\':\'Legend Three\'}\" title=\"HAPPY STAFF\" style=\"3\" description=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\" title_tag=\"h4\" width=\"176\" height=\"176\" inner_cutout=\"60\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238240793{background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_text_separator title=\"RANDOM &amp; ZERO COUNTERS\" title_align=\"separator_align_center\" color=\"custom\" border_width=\"1\" heading_size=\"h3\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238252654{padding-top: 80px !important;padding-bottom: 0px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"1550\" digit_font_size=\"56px\" digit_font_color=\"#ec008c\" text=\"HAPPY CLIENTS\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"0px 0px 20px 0px\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"3779\" digit_font_size=\"56px\" digit_font_color=\"#ec008c\" text=\"PROJECT COMPLETE\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"0px 0px 20px 0px\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"1587\" digit_font_size=\"56px\" digit_font_color=\"#ec008c\" text=\"COFFEE CUPS\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"0px 0px 20px 0px\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"3679\" digit_font_size=\"56px\" digit_font_color=\"#ec008c\" text=\"ANSWERED QUESTION\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"0px 0px 20px 0px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238079631{padding-top: 80px !important;padding-bottom: 140px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"100px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"ww-custom\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"1550\" digit_font_size=\"56px\" digit_font_color=\"#222222\" text=\"HAPPY CLIENTS\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"20px 0px\" icon=\"fa-heart-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"3779\" digit_font_size=\"56px\" digit_font_color=\"#222222\" text=\"PROJECT COMPLETE\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"20px 0px\" icon=\"fa-file-archive-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"1587\" digit_font_size=\"56px\" digit_font_color=\"#222222\" text=\"COFFEE CUPS\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"20px 0px\" icon=\"fa-coffee\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/4\"][cshero-counter heading_size=\"h4\" heading_align=\"text-left\" heading_text_style=\"none\" type=\"zero\" digit=\"3679\" digit_font_size=\"56px\" digit_font_color=\"#222222\" text=\"ANSWERED QUESTION\" text_size=\"13px\" text_color=\"#888888\" text_style=\"uppercase\" align=\"text-center\" box=\"no\" box_style=\"solid\" layout=\"counter.layout1\" digit_margin=\"20px 0px\" icon=\"fa-question\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238591250{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\n<h4 style=\"text-align: center;\">CONTENT</h4>\n<h1 style=\"text-align: center;\">COVER SLIDERS</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row font_color=\"#888888\" full_width=\"false\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" type=\"ww-custom\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style2\" height_engle_style2=\"100px\" engle_color_style2=\"#f5f5f5\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][cshero-cover-boxes title_size=\"h4\" title_color=\"#222222\" item_default=\"3\" item_title_size=\"h4\" item_link_label=\"LEARN MORE\" item_link_target=\"_self\" item_title1=\"NANNY COOPER\" item_description1=\"Proin fringilla nibh faucibus odio mollis interdum.\" item_link1=\"#\" item_title2=\"NANNY COOPER\" item_description2=\"Proin fringilla nibh faucibus odio mollis interdum.\" item_title3=\"NANNY COOPER\" item_description3=\"Proin fringilla nibh faucibus odio mollis interdum.\" item_link3=\"#\" item_image1=\"786\" item_image2=\"787\" item_image3=\"781\" read_more_button_style=\"yes\" item_title_color=\"#222222\" item_description_color=\"#888888\" image_size=\"1\" cover_button_type=\"btn-default\" cover_button_size=\"btn-mini\"][vc_empty_space height=\"40px\"][cshero-cover-boxes title_size=\"h4\" title_color=\"#222222\" item_default=\"1\" item_title_size=\"h4\" item_link_label=\"LEARN MORE\" item_link_target=\"_self\" item_title1=\"NANNY COOPER\" item_description1=\"Proin fringilla nibh faucibus odio mollis interdum.\" item_link1=\"#\" item_title2=\"NANNY COOPER\" item_description2=\"Proin fringilla nibh faucibus odio mollis interdum.\" item_title3=\"NANNY COOPER\" item_description3=\"Proin fringilla nibh faucibus odio mollis interdum.\" item_link3=\"#\" item_image1=\"786\" item_image2=\"787\" item_image3=\"781\" read_more_button_style=\"yes\" item_title_color=\"#222222\" item_description_color=\"#888888\" image_size=\"1\" cover_button_type=\"btn-default\" cover_button_size=\"btn-mini\"][vc_empty_space height=\"220px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238480529{background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\n<h4 style=\"text-align: center;\">IMPORTANT</h4>\n<h1 style=\"text-align: center;\">DROP CAPS</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238341297{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cs-dropcap boxed=\"true\" text=\"S\" style=\"style-1\" color_first_text=\"#ffffff\" background_buttom=\"#ec008c\" border_color=\"#ec008c\" content_color=\"#888888\" border_radius=\"0%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inci didunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/cs-dropcap][/vc_column][vc_column width=\"1/3\"][cs-dropcap color_first_text=\"#ffffff\" background_buttom=\"#70d2e5\" border_color=\"#70d2e5\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inci didunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/cs-dropcap][/vc_column][vc_column width=\"1/3\"][cs-dropcap color_first_text=\"#ffffff\" background_buttom=\"#868686\" border_color=\"#868686\" icon=\"fa fa-home\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inci didunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/cs-dropcap][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239222256{padding-top: 0px !important;padding-bottom: 150px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"100px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"ww-custom\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/3\"][cs-dropcap boxed=\"true\" text=\"S\" style=\"style-1\" color_first_text=\"#ffffff\" background_buttom=\"#333333\" border_color=\"#333333\" border_radius=\"100%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inci didunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/cs-dropcap][/vc_column][vc_column width=\"1/3\"][cs-dropcap color_first_text=\"#ec008c\" background_buttom=\"rgba(255,255,255,0)\" border_radius=\"100%\" border_color=\"#ec008c\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inci didunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/cs-dropcap][/vc_column][vc_column width=\"1/3\"][cs-dropcap color_first_text=\"#ffffff\" background_buttom=\"#868686\" border_color=\"#868686\" icon=\"fa fa-home\" border_radius=\"100%\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor inci didunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/cs-dropcap][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239236612{padding-top: 70px !important;padding-bottom: 60px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\n<h4 style=\"text-align: center;\">GET SOME LEADS</h4>\n<h1 style=\"text-align: center;\">CALLS TO ACTION</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421102419023{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"LET’s GET YOUR CUSTOMERS ENGAGED &amp; SUBMIT DETAILS\" call_text_font_size=\"26px\" call_text_color=\"#888\" title=\"BUY SPECTRUM NOW\" target=\"_blank\" button_type=\"btn-primary\" size=\"btn-mini\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421238704538{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #222222 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"LET’s GET YOUR CUSTOMERS ENGAGED &amp; SUBMIT DETAILS\" call_text_font_size=\"26px\" call_text_color=\"#fff\" title=\"BUY SPECTRUM NOW\" target=\"_blank\" button_type=\"btn-default\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421949630320{padding-top: 80px !important;padding-bottom: 60px !important;background-color: #f5f5f5 !important;}\" type=\"ww-custom\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_position_style2=\"engle-top-style1\" height_engle_style2=\"100px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_color_style2=\"#222222\"][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\n<h4 style=\"text-align: center;\">WHATS THE HEADING?</h4>\n<h1 style=\"text-align: center;\">TEXT SEPARATORS &amp; HEADINGS</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239313393{padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>PRIMARY COLOR - THIN</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#ec008c\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239329012{padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\" column_style=\"title-preset2\"][vc_column_text]\n<h4>SECONDARY COLOR - THIN</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#222222\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239337952{padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>PRIMARY COLOR - MEDIUM</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"4\" separator_arrow=\"no\" accent_color=\"#ec008c\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239346560{padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>SECONDARY COLOR - MEDIUM</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"4\" separator_arrow=\"no\" accent_color=\"#222222\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239355254{padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>PRIMARY COLOR - THICK</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"12\" separator_arrow=\"no\" accent_color=\"#ec008c\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239363742{padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>SECONDARY COLOR - THICK</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"12\" separator_arrow=\"no\" accent_color=\"#222222\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421239483246{padding-top: 0px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>PRIMARY COLOR - THICK WITH ARROW</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"12\" separator_arrow=\"yes\" accent_color=\"#ec008c\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"#ec008c\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1406738266891{padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][vc_column_text]\n<h4>SECONDARY COLOR - THICK WITH ARROW</h4>\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt[/vc_column_text][vc_empty_space height=\"30px\"][vc_separator color=\"custom\" border_width=\"12\" separator_arrow=\"yes\" accent_color=\"#222222\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"#222222\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" css=\".vc_custom_1421239523309{padding-top: 80px !important;padding-bottom: 80px !important;}\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_text_separator title=\"PRIMARY COLOR - THIN\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#ec008c\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"1\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" css=\".vc_custom_1406695875733{padding-bottom: 80px !important;}\"][vc_column width=\"1/1\"][vc_text_separator title=\"SECONDARY COLOR - THIN\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#222222\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"1\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1406695887074{padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_text_separator title=\"PRIMARY COLOR - MEDIUM\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#ec008c\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"4\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1406695901638{padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\"][vc_column width=\"1/1\"][vc_text_separator title=\"SECONDARY COLOR - MEDIUM\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#222222\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"4\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1406695909119{padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_text_separator title=\"PRIMARY COLOR - THICK\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#ec008c\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"10\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1406695915555{padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_text_separator title=\"SECONDARY COLOR - THICK\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#222222\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"10\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" css=\".vc_custom_1406696652349{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\"][vc_text_separator title=\"PRIMARY COLOR - DOTTED\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#ec008c\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"4\" style=\"dotted\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" css=\".vc_custom_1406696987532{padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\"][vc_text_separator title=\"SECONDARY COLOR - DOTTED\" title_align=\"separator_align_center\" color=\"custom\" accent_color=\"#222222\" desc=\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt\" border_width=\"4\" style=\"dotted\" heading_size=\"h4\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421241544137{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #222222 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"RELEASE THE POWER OF SPECTRUM ON YOUR WEBSITE\" call_text_font_size=\"26px\" call_text_color=\"#fff\" title=\"BUY NOW!\" target=\"_blank\" button_type=\"btn-default\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row]", "Elements", "", "inherit", "open", "open", "", "97-revision-v1", "", "", "2015-02-03 11:36:37", "2015-02-03 11:36:37", "", "0", "http://localhost/mdeal2/?p=1760", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1738", "1", "2015-02-03 10:40:27", "2015-02-03 10:40:27", "[vc_row row_responsive_extra_small=\"1\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][rev_slider_vc alias=\"home-slider\"][/vc_column][/vc_row][vc_row dt_id=\"clients\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\"][vc_column width=\"1/1\" text_align=\"center\"][vc_empty_space height=\"50px\"][vc_custom_heading text=\"We are your agency waiting to be born on ThemeForest.\nWe create beautiful design, powerful code, bespoke solutions and cool ideas.\" font_container=\"tag:h2|font_size:31px|text_align:center|color:%23888888|line_height:53px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"70px\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"120px\" engle_color=\"#ffffff\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_position=\"engle-top-right\" height_engle_style2=\"60px\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\"][vc_column width=\"1/1\"][cs_custom_heading text=\"STUNNING CLIENT PORTFOLIO\" font_container=\"tag:h4|font_size:20px|text_align:center|color:%23d4d4d4\" style=\"style-none\"][vc_empty_space height=\"40px\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"3\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"140\" margin_item=\"0\" auto_scroll=\"0\" speed=\"500\" show_nav=\"0\" nav_align=\"text-left\" show_pager=\"0\" pager_align=\"pager-left\" crop_image=\"1\" width_image=\"120\" height_image=\"100\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"0\" category=\"3\"][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" css=\".vc_custom_1420799951967{padding-top: 60px !important;padding-bottom: 570px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-layer1new2large1.jpg?id=874) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1=\"687\" lax_layer1_width=\"308px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2=\"688\" lax_layer2_width=\"300px\" lax_layer2_height=\"352px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3=\"689\" lax_layer3_width=\"150px\" lax_layer3_height=\"272px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" lax_layer4=\"690\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5=\"680\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6=\"683\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-400px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-250px\"][vc_column width=\"1/6\" text_align=\"center\" column_style=\"title-feature-box\"][/vc_column][vc_column width=\"2/3\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">YOUR FIRST</h3>\n<h1 style=\"margin-top: 0px;\">AGENCY IDEA</h1>\n[/vc_column_text][vc_column_text]We create and build kickass solutions for our clients.\nIf your project needs that extra sprinkle of gold dust.[/vc_column_text][vc_empty_space height=\"30px\"][vc_button title=\"LEARN ABOUT OUR IDEAS\" target=\"_self\" type=\"btn btn-default btn-default-alt\" size=\"btn-sm btn-small\" href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/parallax-dream/\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422959517028{padding-top: 60px !important;padding-bottom: 60px !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1420808889043{padding-bottom: 30px !important;}\"][vc_custom_heading text=\"We’re so talented\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">We take the time to fully understand your brand and business objectives, for sustained growth.</p>\n<p style=\"font-size: 34px; line-height: 48px; color: #222222; font-weight: 300; font-style: italic;\">Over 25 years experience</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" offset=\"vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_empty_space height=\"50px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"WEB DEVELOPMENT\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"80\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"BRANDING\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"65\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"MARKETING\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"95\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"PR\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"87\" color_value=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421267739895{padding-top: 200px !important;padding-bottom: 450px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-layer2NEW1-1.jpg?id=789) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"150px\" height_engle_style2=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" type=\"ww-custom\" engle_position=\"engle-bottom-left\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-top-left\" engle_uplicated_height=\"150px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"100px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_right_top\" lax_layer3_align=\"lax_left_bottom\" lax_layer4_align=\"lax_right_middle\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1=\"697\" lax_layer1_width=\"665px\" lax_layer1_height=\"436px\" lax_layer1_position_x=\"-250px\" lax_layer1_position_y=\"-50px\" lax_layer2=\"771\" lax_layer2_width=\"639px\" lax_layer2_height=\"299px\" lax_layer2_position_x=\"-180px\" lax_layer2_position_y=\"10px\" lax_layer3=\"772\" lax_layer3_width=\"525px\" lax_layer3_height=\"541px\" lax_layer3_position_x=\"-200px\" lax_layer3_position_y=\"-150px\" lax_layer4=\"773\" lax_layer4_width=\"264px\" lax_layer4_height=\"190px\" lax_layer4_position_x=\"15px\" lax_layer4_position_y=\"0px\" lax_layer5=\"775\" lax_layer5_width=\"285px\" lax_layer5_height=\"473px\" lax_layer5_position_x=\"-120px\" lax_layer5_position_y=\"-130px\" enable_engle_style2=\"false\" engle_position_style2=\"engle-top-style2\" engle_color_style2=\"#ffffff\" engle_duplicated_position_style2=\"engle-bottom-style1\" engle_duplicated_color_style2=\"#ffffff\" enable_engle_duplicated_style2=\"false\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">YOUR FIRST</h3>\n<h1 style=\"margin-top: 0px;\">AGENCY SOLUTION</h1>\nBespoke systems tailored to your business needs.\nTo streamline your work and information, click the button below.[/vc_column_text][vc_empty_space height=\"40px\"][vc_button title=\"LEARN ABOUT OUR SOLUTIONS\" target=\"_self\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/services/\"][/vc_column][/vc_row][vc_row full_width=\"true\" height_engle=\"0\" engle_uplicated_height=\"0\" height_engle_style2=\"0\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_color=\"#ffffff\" dt_id=\"work\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" type=\"ww-custom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1422959489904{margin-top: 20px !important;padding-top: 70px !important;}\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">OUR BEAUTIFUL</h3>\n<h1 style=\"margin-top: 0px;\">PORTFOLIO</h1>\nWe’ve hunted and gathered a stunning portfolio over the years,\nbelow is a selection of our clients successful projects.[/vc_column_text][vc_empty_space height=\"30px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"4\" filter=\"1\" filter_align=\"text-center\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"70\" description_color=\"#ffffff\" show_link=\"0\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"0\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" link_type=\"text\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" category=\"6,9,8,7\" item_margin=\"0\" width_image=\"400\" height_image=\"420\" item_bg_color=\"rgba(0,0,0,0.8)\" items_display=\"12\" pagination=\"1\" pagination_type=\"number\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_uplicated_height=\"60px\" css=\".vc_custom_1422959394997{padding-top: 80px !important;padding-bottom: 60px !important;}\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/1\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"115\" read_more=\"VIEW OUR FULL PORTFOLIO\" read_btn=\"1\" image=\"354\" height_image=\"110\" link_show_more=\"#\" button_type=\"btn-default\" button_size=\"btn-sm\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_custom_heading text=\"Ideas into reality\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">We take your brief, throw this into our melting pot.</p>\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">You’re then amazed with our stunning ideas and creative designs.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422959563783{padding-top: 300px !important;padding-bottom: 300px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Typewriter.jpg?id=865) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-top-right\" height_engle=\"150px\" enable_engle_duplicate=\"false\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"150px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_color=\"#ffffff\" engle_duplicated_color=\"#ffffff\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" enable_parallax=\"false\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_medium=\"1\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" text_align=\"right\" column_style=\"title-feature-box\" font_color=\"#222222\"][vc_column_text]\n<h1>IT ALL STARTS<span style=\"display: block;\">WITH AN IDEA!</span></h1>\nNo matter what project you have in mind,\nour creative team start at the begining of\nyour journey, then develop your idea into\nan amazing piece of reality...[/vc_column_text][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"150px\" engle_color=\"#ffffff\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_color=\"#e9e9ec\" engle_border_width=\"3\" engle_duplicated_border_width=\"0\" dt_id=\"team\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1421773772134{padding-top: 20px !important;}\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#f5f5f5\"][vc_column width=\"1/1\" text_align=\"center\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">FULLY SKILLED</h3>\n<h1 style=\"margin-top: 0px;\">OUR TEAM</h1>\n<p style=\"font-size: 25px; padding-top: 20px;\">We have a diverse range of skills with our team, suited to match any type of client project</p>\n[/vc_column_text][vc_empty_space height=\"40px\"][cshero-team heading_size=\"h1\" heading_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" content_align=\"text-center\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h4\" show_category=\"1\" show_team_position=\"1\" show_team_qualification=\"0\" show_team_experience=\"0\" show_team_contact_info=\"0\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" heading_color=\"#222222\" category=\"4,23,25,24\" width_item=\"300\" margin_item=\"50\" min_slide=\"1\" max_slide=\"3\" title_team_color=\"#888888\" category_color=\"#888888\" social_color=\"#888888\" social_hover_color=\"#ea008c\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" item_bg_color_hover=\"#eeeeee\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421774058357{padding-top: 70px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/citybg-1new2.jpg?id=1679) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-left\" height_engle=\"150px\" engle_color=\"#ffffff\" engle_uplicated_height=\"150px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#ffffff\" row_head_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"contact\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_duplicate=\"engle-top-left\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px; color: #222222 !important;\">READY &amp; WAITING</h3>\n<h1 style=\"margin-top: 0px; color: #222222 !important;\">CONTACT US</h1>\n<p style=\"font-size: 25px; color: #222222 !important;\">We\'d love to work on your next project.</p>\n[/vc_column_text][vc_empty_space height=\"70px\"][contact-form-7 id=\"28\" html_class=\"contact-style-1\"][vc_empty_space height=\"39px\"][cs-social title_align=\"text-left\" layout=\"social.layout1\" icon1=\"facebook\" icon1_link=\"#\" icon2=\"twitter\" icon2_link=\"#\" icon3=\"google-plus\" icon3_link=\"#\" icon4=\"pinterest\" icon4_link=\"#\" icon5=\"skype\" icon5_link=\"#\" icon6=\"dribbble\" icon6_link=\"#\" icon7=\"youtube-play\" icon7_link=\"#\" icon8=\"android\" icon8_link=\"#\" icon_color=\"#ffffff\" icon_hover_color=\"#ec008c\" icon_bakground_color=\"#1e73be\" icon_bakground_hover_color=\"#eeee22\" border_style=\"none\" social_item_margin=\"0 10px\" icon_size=\"29px\"][vc_empty_space height=\"43px\"][vc_column_text]Suite 56, Empire State Building, New York, USA\nt: + 01 3467 4759 987 | e: info@spectrum.com[/vc_column_text][vc_empty_space height=\"140px\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_uplicated_height=\"60px\" css=\".vc_custom_1421773893128{padding-top: 40px !important;padding-bottom: 80px !important;}\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_custom_heading text=\"Keeping up!!\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">Here at the spectrum theme, we are always blogging and posting details of our projects and client wins.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" text_align=\"center\" css=\".vc_custom_1421774289019{padding-top: 20px !important;}\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"115\" read_more=\"VIEW ALL OUR NEW POSTS\" read_btn=\"1\" image=\"372\" height_image=\"110\" link_show_more=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/blog-classic-style-2/\" button_type=\"btn-default\" button_size=\"btn-sm\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#222222\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" row_head_color=\"#222222\" dt_id=\"blog\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][cshero-post-carousel heading_size=\"h2\" title_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.default\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"text-center\" show_pager=\"0\" pager_align=\"pager-left text-left\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h4\" show_image=\"1\" crop_image=\"1\" show_category=\"0\" show_description=\"1\" show_popup=\"1\" show_date=\"1\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" title=\"LATEST BLOGS\" title_color=\"#222222\" margin_item=\"0\" item_title_color=\"#222222\" width_image=\"480\" height_image=\"762\" category=\"12\" width_item=\"200\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" content_color=\"#222222\" content_hover_color=\"#ffffff\" item_title_hover_color=\"#bababa\" date_format=\"d F Y\" read_more_icon=\"fa fa-link\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"icon\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" content_padding=\"0\" max_slide=\"5\" nav_arrow_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422959950705{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #222222 !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"USE SPECTRUM FOR YOUR NEXT PROJECT\" call_text_font_size=\"24px\" call_text_color=\"#fff\" title=\"CLICK TO BUY THIS THEME NOW!\" target=\"_blank\" button_type=\"btn-default\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "4-revision-v1", "", "", "2015-02-03 10:40:27", "2015-02-03 10:40:27", "", "0", "http://localhost/mdeal2/?p=1738", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1736", "1", "2015-02-03 10:32:49", "2015-02-03 10:32:49", "[vc_row row_responsive_extra_small=\"1\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][rev_slider_vc alias=\"home-slider\"][/vc_column][/vc_row][vc_row dt_id=\"clients\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\"][vc_column width=\"1/1\" text_align=\"center\"][vc_empty_space height=\"50px\"][vc_custom_heading text=\"We are your agency waiting to be born on ThemeForest.\nWe create beautiful design, powerful code, bespoke solutions and cool ideas.\" font_container=\"tag:h2|font_size:31px|text_align:center|color:%23888888|line_height:53px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"70px\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"120px\" engle_color=\"#ffffff\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_position=\"engle-top-right\" height_engle_style2=\"60px\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\"][vc_column width=\"1/1\"][cs_custom_heading text=\"STUNNING CLIENT PORTFOLIO\" font_container=\"tag:h4|font_size:20px|text_align:center|color:%23d4d4d4\" style=\"style-none\"][vc_empty_space height=\"40px\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"3\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"140\" margin_item=\"0\" auto_scroll=\"0\" speed=\"500\" show_nav=\"0\" nav_align=\"text-left\" show_pager=\"0\" pager_align=\"pager-left\" crop_image=\"1\" width_image=\"120\" height_image=\"100\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"0\" category=\"3\"][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" css=\".vc_custom_1420799951967{padding-top: 60px !important;padding-bottom: 570px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-layer1new2large1.jpg?id=874) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1=\"687\" lax_layer1_width=\"308px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2=\"688\" lax_layer2_width=\"300px\" lax_layer2_height=\"352px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3=\"689\" lax_layer3_width=\"150px\" lax_layer3_height=\"272px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" lax_layer4=\"690\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5=\"680\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6=\"683\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-400px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-250px\"][vc_column width=\"1/6\" text_align=\"center\" column_style=\"title-feature-box\"][/vc_column][vc_column width=\"2/3\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">YOUR FIRST</h3>\n<h1 style=\"margin-top: 0px;\">AGENCY IDEA</h1>\n[/vc_column_text][vc_column_text]We create and build kickass solutions for our clients.\nIf your project needs that extra sprinkle of gold dust.[/vc_column_text][vc_empty_space height=\"30px\"][vc_button title=\"LEARN ABOUT OUR IDEAS\" target=\"_self\" type=\"btn btn-default btn-default-alt\" size=\"btn-sm btn-small\" href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/parallax-dream/\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1422959517028{padding-top: 60px !important;padding-bottom: 60px !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1420808889043{padding-bottom: 30px !important;}\"][vc_custom_heading text=\"We’re so talented\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">We take the time to fully understand your brand and business objectives, for sustained growth.</p>\n<p style=\"font-size: 34px; line-height: 48px; color: #222222; font-weight: 300; font-style: italic;\">Over 25 years experience</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" offset=\"vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_empty_space height=\"50px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"WEB DEVELOPMENT\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"80\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"BRANDING\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"65\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"MARKETING\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"95\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"PR\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"87\" color_value=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421267739895{padding-top: 200px !important;padding-bottom: 450px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-layer2NEW1-1.jpg?id=789) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"150px\" height_engle_style2=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" type=\"ww-custom\" engle_position=\"engle-bottom-left\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-top-left\" engle_uplicated_height=\"150px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"100px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_right_top\" lax_layer3_align=\"lax_left_bottom\" lax_layer4_align=\"lax_right_middle\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1=\"697\" lax_layer1_width=\"665px\" lax_layer1_height=\"436px\" lax_layer1_position_x=\"-250px\" lax_layer1_position_y=\"-50px\" lax_layer2=\"771\" lax_layer2_width=\"639px\" lax_layer2_height=\"299px\" lax_layer2_position_x=\"-180px\" lax_layer2_position_y=\"10px\" lax_layer3=\"772\" lax_layer3_width=\"525px\" lax_layer3_height=\"541px\" lax_layer3_position_x=\"-200px\" lax_layer3_position_y=\"-150px\" lax_layer4=\"773\" lax_layer4_width=\"264px\" lax_layer4_height=\"190px\" lax_layer4_position_x=\"15px\" lax_layer4_position_y=\"0px\" lax_layer5=\"775\" lax_layer5_width=\"285px\" lax_layer5_height=\"473px\" lax_layer5_position_x=\"-120px\" lax_layer5_position_y=\"-130px\" enable_engle_style2=\"false\" engle_position_style2=\"engle-top-style2\" engle_color_style2=\"#ffffff\" engle_duplicated_position_style2=\"engle-bottom-style1\" engle_duplicated_color_style2=\"#ffffff\" enable_engle_duplicated_style2=\"false\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">YOUR FIRST</h3>\n<h1 style=\"margin-top: 0px;\">AGENCY SOLUTION</h1>\nBespoke systems tailored to your business needs.\nTo streamline your work and information, click the button below.[/vc_column_text][vc_empty_space height=\"40px\"][vc_button title=\"LEARN ABOUT OUR SOLUTIONS\" target=\"_self\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/services/\"][/vc_column][/vc_row][vc_row full_width=\"true\" height_engle=\"0\" engle_uplicated_height=\"0\" height_engle_style2=\"0\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_color=\"#ffffff\" dt_id=\"work\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" type=\"ww-custom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1422959489904{margin-top: 20px !important;padding-top: 70px !important;}\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">OUR BEAUTIFUL</h3>\n<h1 style=\"margin-top: 0px;\">PORTFOLIO</h1>\nWe’ve hunted and gathered a stunning portfolio over the years,\nbelow is a selection of our clients successful projects.[/vc_column_text][vc_empty_space height=\"30px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"4\" filter=\"1\" filter_align=\"text-center\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"70\" description_color=\"#ffffff\" show_link=\"0\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"0\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" link_type=\"text\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" category=\"6,9,8,7\" item_margin=\"0\" width_image=\"400\" height_image=\"420\" item_bg_color=\"rgba(0,0,0,0.8)\" items_display=\"12\" pagination=\"1\" pagination_type=\"number\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_uplicated_height=\"60px\" css=\".vc_custom_1422959394997{padding-top: 80px !important;padding-bottom: 60px !important;}\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/1\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"115\" read_more=\"VIEW OUR FULL PORTFOLIO\" read_btn=\"1\" image=\"354\" height_image=\"110\" link_show_more=\"#\" button_type=\"btn-default\" button_size=\"btn-sm\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_custom_heading text=\"Ideas into reality\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">We take your brief, throw this into our melting pot.</p>\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">You’re then amazed with our stunning ideas and creative designs.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1422959563783{padding-top: 300px !important;padding-bottom: 300px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Typewriter.jpg?id=865) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-top-right\" height_engle=\"150px\" enable_engle_duplicate=\"false\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"150px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_color=\"#ffffff\" engle_duplicated_color=\"#ffffff\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" enable_parallax=\"false\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_medium=\"1\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" text_align=\"right\" column_style=\"title-feature-box\" font_color=\"#222222\"][vc_column_text]\n<h1>IT ALL STARTS<span style=\"display: block;\">WITH AN IDEA!</span></h1>\nNo matter what project you have in mind,\nour creative team start at the begining of\nyour journey, then develop your idea into\nan amazing piece of reality...[/vc_column_text][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"150px\" engle_color=\"#ffffff\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_color=\"#e9e9ec\" engle_border_width=\"3\" engle_duplicated_border_width=\"0\" dt_id=\"team\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1421773772134{padding-top: 20px !important;}\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#f5f5f5\"][vc_column width=\"1/1\" text_align=\"center\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">FULLY SKILLED</h3>\n<h1 style=\"margin-top: 0px;\">OUR TEAM</h1>\n<p style=\"font-size: 25px; padding-top: 20px;\">We have a diverse range of skills with our team, suited to match any type of client project</p>\n[/vc_column_text][vc_empty_space height=\"40px\"][cshero-team heading_size=\"h1\" heading_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" content_align=\"text-center\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h4\" show_category=\"1\" show_team_position=\"1\" show_team_qualification=\"0\" show_team_experience=\"0\" show_team_contact_info=\"0\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" heading_color=\"#222222\" category=\"4,23,25,24\" width_item=\"300\" margin_item=\"50\" min_slide=\"1\" max_slide=\"3\" title_team_color=\"#888888\" category_color=\"#888888\" social_color=\"#888888\" social_hover_color=\"#ea008c\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" item_bg_color_hover=\"#eeeeee\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421774058357{padding-top: 70px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/citybg-1new2.jpg?id=1679) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-left\" height_engle=\"150px\" engle_color=\"#ffffff\" engle_uplicated_height=\"150px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#ffffff\" row_head_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"contact\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_duplicate=\"engle-top-left\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px; color: #222222 !important;\">READY &amp; WAITING</h3>\n<h1 style=\"margin-top: 0px; color: #222222 !important;\">CONTACT US</h1>\n<p style=\"font-size: 25px; color: #222222 !important;\">We\'d love to work on your next project.</p>\n[/vc_column_text][vc_empty_space height=\"70px\"][contact-form-7 id=\"28\" html_class=\"contact-style-1\"][vc_empty_space height=\"39px\"][cs-social title_align=\"text-left\" layout=\"social.layout1\" icon1=\"facebook\" icon1_link=\"#\" icon2=\"twitter\" icon2_link=\"#\" icon3=\"google-plus\" icon3_link=\"#\" icon4=\"pinterest\" icon4_link=\"#\" icon5=\"skype\" icon5_link=\"#\" icon6=\"dribbble\" icon6_link=\"#\" icon7=\"youtube-play\" icon7_link=\"#\" icon8=\"android\" icon8_link=\"#\" icon_color=\"#ffffff\" icon_hover_color=\"#ec008c\" icon_bakground_color=\"#1e73be\" icon_bakground_hover_color=\"#eeee22\" border_style=\"none\" social_item_margin=\"0 10px\" icon_size=\"29px\"][vc_empty_space height=\"43px\"][vc_column_text]Suite 56, Empire State Building, New York, USA\nt: + 01 3467 4759 987 | e: info@spectrum.com[/vc_column_text][vc_empty_space height=\"140px\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_uplicated_height=\"60px\" css=\".vc_custom_1421773893128{padding-top: 40px !important;padding-bottom: 80px !important;}\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_custom_heading text=\"Keeping up!!\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">Here at the spectrum theme, we are always blogging and posting details of our projects and client wins.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" text_align=\"center\" css=\".vc_custom_1421774289019{padding-top: 20px !important;}\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"115\" read_more=\"VIEW ALL OUR NEW POSTS\" read_btn=\"1\" image=\"372\" height_image=\"110\" link_show_more=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/blog-classic-style-2/\" button_type=\"btn-default\" button_size=\"btn-sm\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#222222\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" row_head_color=\"#222222\" dt_id=\"blog\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][cshero-post-carousel heading_size=\"h2\" title_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.default\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"text-center\" show_pager=\"0\" pager_align=\"pager-left text-left\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h4\" show_image=\"1\" crop_image=\"1\" show_category=\"0\" show_description=\"1\" show_popup=\"1\" show_date=\"1\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" title=\"LATEST BLOGS\" title_color=\"#222222\" margin_item=\"0\" item_title_color=\"#222222\" width_image=\"480\" height_image=\"762\" category=\"12\" width_item=\"200\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" content_color=\"#222222\" content_hover_color=\"#ffffff\" item_title_hover_color=\"#bababa\" date_format=\"d F Y\" read_more_icon=\"fa fa-link\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"icon\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" content_padding=\"0\" max_slide=\"5\" nav_arrow_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "4-revision-v1", "", "", "2015-02-03 10:32:49", "2015-02-03 10:32:49", "", "0", "http://localhost/mdeal2/?p=1736", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1731", "1", "2015-02-03 10:07:11", "2015-02-03 10:07:11", "[vc_row full_width=\"false\" height_engle=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0.4\" type=\"ww-custom\" engle_color=\"#ffffff\" font_color=\"#222222\" row_head_color=\"#222222\" enable_parallax=\"false\" bg_video_color=\"#ffffff\" height_engle_style2=\"60px\" css=\".vc_custom_1421142905638{padding-top: 0px !important;padding-bottom: 70px !important;}\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position=\"engle-bottom-right\" engle_position_duplicate=\"engle-top-left\"][vc_column width=\"1/2\" text_align=\"left\" css=\".vc_custom_1421092923204{padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_column_text]\n<h1>BORN WITH QUALITY</h1>\n<p style=\"font-size: 25px; line-height: 35px; font-weight: 300;\">Deliver more detailed content on your pages in spectrums unique tab styling.</p>\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostruden exercitation ullamco laboris nisi ut aliquip.\n\nLorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostruden exercitation ullamco laboris nisi ut aliquip.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][vc_tabs style=\"style2\" interval=\"0\" tab_border_color=\"#e9e9ec\" tab_border_color_active=\"#e6007e\"][vc_tab title=\"Video\" tab_id=\"1417822364668-0-0\"][cs-dropcap boxed=\"true\" text=\"S\" style=\"style-1\" color_first_text=\"#ffffff\" background_buttom=\"#ec008c\" border_color=\"#ec008c\" content_color=\"#222222\"]Vrchitecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur.\n\nArchitecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[/cs-dropcap][/vc_tab][vc_tab title=\"Print\" tab_id=\"1417822365064-0-2\"][cs-dropcap boxed=\"true\" text=\"S\" style=\"style-1\" color_first_text=\"#ffffff\" background_buttom=\"#ec008c\" border_color=\"#ec008c\" content_color=\"#222222\"]Pemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur, Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.\n\nArchitecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/cs-dropcap][/vc_tab][vc_tab title=\"Web\" tab_id=\"1417822365447-0-6\"][cs-dropcap boxed=\"true\" text=\"S\" style=\"style-1\" color_first_text=\"#ffffff\" background_buttom=\"#ec008c\" border_color=\"#ec008c\" content_color=\"#222222\"]Wemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur, Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.\n\nVoluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.[/cs-dropcap][/vc_tab][vc_tab title=\"Audio\" tab_id=\"1421139041089-3-4\"][cs-dropcap boxed=\"true\" text=\"S\" style=\"style-1\" color_first_text=\"#ffffff\" background_buttom=\"#ec008c\" border_color=\"#ec008c\" content_color=\"#222222\"]Aemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur, Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit.\n\nNemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Nemo enim ipsam voluptatem quia voluptas sit aspernatur.[/cs-dropcap][/vc_tab][/vc_tabs][/vc_column][/vc_row][vc_row css=\".vc_custom_1421142974440{padding-top: 140px !important;padding-bottom: 100px !important;background-color: #f5f5f5 !important;}\" type=\"ww-custom\" full_width=\"false\" height_engle=\"100px\" engle_color=\"#ffffff\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_border_color=\"#cecece\" engle_position=\"engle-top-right\" enable_row_engle=\"false\"][vc_column width=\"1/1\" text_align=\"center\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title=\"OUR PACKAGES\" title_color=\"#222222\" title_pricing_color=\"#222222\" category=\"10\" sub_title=\"HOW MUCH DOES IT COST?\" sub_heading_size=\"h4\" sub_title_color=\"#222222\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421243692815{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #ffffff !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][vc_cta_button call_text=\"THE NEXT GENERATION OF WORDPRESS THEME HAS ARRIVED\" call_text_font_size=\"22px\" call_text_color=\"#222222\" title=\"Purchase Spectrum Now!\" target=\"_blank\" button_type=\"btn-primary\" position=\"cs_align_right\" href=\"http://themeforest.net/item/spectrum-multi-one-page-all-purpose-wp-theme/10259946\"][/vc_column][/vc_row]", "SERVICES", "", "inherit", "open", "open", "", "1249-revision-v1", "", "", "2015-02-03 10:07:11", "2015-02-03 10:07:11", "", "0", "http://localhost/mdeal2/?p=1731", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1733", "1", "2015-02-03 10:31:00", "2015-02-03 10:31:00", "[vc_row row_responsive_extra_small=\"1\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][rev_slider_vc alias=\"home-slider\"][/vc_column][/vc_row][vc_row dt_id=\"clients\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\"][vc_column width=\"1/1\" text_align=\"center\"][vc_empty_space height=\"50px\"][vc_custom_heading text=\"We are your agency waiting to be born on ThemeForest.\nWe create beautiful design, powerful code, bespoke solutions and cool ideas.\" font_container=\"tag:h2|font_size:31px|text_align:center|color:%23888888|line_height:53px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"70px\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"120px\" engle_color=\"#ffffff\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_position=\"engle-top-right\" height_engle_style2=\"60px\" type=\"ww-custom\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\"][vc_column width=\"1/1\"][cs_custom_heading text=\"STUNNING CLIENT PORTFOLIO\" font_container=\"tag:h4|font_size:20px|text_align:center|color:%23d4d4d4\" style=\"style-none\"][vc_empty_space height=\"40px\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"3\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"140\" margin_item=\"0\" auto_scroll=\"0\" speed=\"500\" show_nav=\"0\" nav_align=\"text-left\" show_pager=\"0\" pager_align=\"pager-left\" crop_image=\"1\" width_image=\"120\" height_image=\"100\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"0\" category=\"3\"][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" css=\".vc_custom_1420799951967{padding-top: 60px !important;padding-bottom: 570px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-layer1new2large1.jpg?id=874) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1=\"687\" lax_layer1_width=\"308px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2=\"688\" lax_layer2_width=\"300px\" lax_layer2_height=\"352px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3=\"689\" lax_layer3_width=\"150px\" lax_layer3_height=\"272px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" lax_layer4=\"690\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5=\"680\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6=\"683\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-400px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-250px\"][vc_column width=\"1/6\" text_align=\"center\" column_style=\"title-feature-box\"][/vc_column][vc_column width=\"2/3\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">YOUR FIRST</h3>\n<h1 style=\"margin-top: 0px;\">AGENCY IDEA</h1>\n[/vc_column_text][vc_column_text]We create and build kickass solutions for our clients.\nIf your project needs that extra sprinkle of gold dust.[/vc_column_text][vc_empty_space height=\"30px\"][vc_button title=\"LEARN ABOUT OUR IDEAS\" target=\"_self\" type=\"btn btn-default btn-default-alt\" size=\"btn-sm btn-small\" href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/parallax-dream/\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421268299525{padding-top: 60px !important;padding-bottom: 30px !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1420808889043{padding-bottom: 30px !important;}\"][vc_custom_heading text=\"We’re so talented\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">We take the time to fully understand your brand and business objectives, for sustained growth.</p>\n<p style=\"font-size: 34px; line-height: 48px; color: #222222; font-weight: 300; font-style: italic;\">Over 25 years experience</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" offset=\"vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_empty_space height=\"50px\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"WEB DEVELOPMENT\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"80\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"BRANDING\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"65\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"MARKETING\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"95\" color_value=\"#ffffff\"][cshero-progressbar show_title=\"1\" title_size=\"h5\" layout=\"progressbar.layout1\" title=\"PR\" title_color=\"#888888\" icon=\"0 0 15px 0\" bg_color=\"#e9e9e9\" color=\"#e6007e\" height=\"12px\" show_value=\"true\" value=\"87\" color_value=\"#ffffff\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421267739895{padding-top: 200px !important;padding-bottom: 450px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/bg-layer2NEW1-1.jpg?id=789) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"150px\" height_engle_style2=\"100px\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" type=\"ww-custom\" engle_position=\"engle-bottom-left\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-top-left\" engle_uplicated_height=\"150px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"100px\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_right_top\" lax_layer3_align=\"lax_left_bottom\" lax_layer4_align=\"lax_right_middle\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1=\"697\" lax_layer1_width=\"665px\" lax_layer1_height=\"436px\" lax_layer1_position_x=\"-250px\" lax_layer1_position_y=\"-50px\" lax_layer2=\"771\" lax_layer2_width=\"639px\" lax_layer2_height=\"299px\" lax_layer2_position_x=\"-180px\" lax_layer2_position_y=\"10px\" lax_layer3=\"772\" lax_layer3_width=\"525px\" lax_layer3_height=\"541px\" lax_layer3_position_x=\"-200px\" lax_layer3_position_y=\"-150px\" lax_layer4=\"773\" lax_layer4_width=\"264px\" lax_layer4_height=\"190px\" lax_layer4_position_x=\"15px\" lax_layer4_position_y=\"0px\" lax_layer5=\"775\" lax_layer5_width=\"285px\" lax_layer5_height=\"473px\" lax_layer5_position_x=\"-120px\" lax_layer5_position_y=\"-130px\" enable_engle_style2=\"false\" engle_position_style2=\"engle-top-style2\" engle_color_style2=\"#ffffff\" engle_duplicated_position_style2=\"engle-bottom-style1\" engle_duplicated_color_style2=\"#ffffff\" enable_engle_duplicated_style2=\"false\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">YOUR FIRST</h3>\n<h1 style=\"margin-top: 0px;\">AGENCY SOLUTION</h1>\nBespoke systems tailored to your business needs.\nTo streamline your work and information, click the button below.[/vc_column_text][vc_empty_space height=\"40px\"][vc_button title=\"LEARN ABOUT OUR SOLUTIONS\" target=\"_self\" type=\"btn btn-default\" size=\"btn-sm btn-small\" href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/services/\"][/vc_column][/vc_row][vc_row full_width=\"true\" height_engle=\"0\" engle_uplicated_height=\"0\" height_engle_style2=\"0\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_color=\"#ffffff\" dt_id=\"work\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" type=\"ww-custom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1422959455691{margin-top: 20px !important;padding-top: 120px !important;}\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">OUR BEAUTIFUL</h3>\n<h1 style=\"margin-top: 0px;\">PORTFOLIO</h1>\nWe’ve hunted and gathered a stunning portfolio over the years,\nbelow is a selection of our clients successful projects.[/vc_column_text][vc_empty_space height=\"30px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"4\" filter=\"1\" filter_align=\"text-center\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"70\" description_color=\"#ffffff\" show_link=\"0\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"0\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" link_type=\"text\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" category=\"6,9,8,7\" item_margin=\"0\" width_image=\"400\" height_image=\"420\" item_bg_color=\"rgba(0,0,0,0.8)\" items_display=\"12\" pagination=\"1\" pagination_type=\"number\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_uplicated_height=\"60px\" css=\".vc_custom_1422959394997{padding-top: 80px !important;padding-bottom: 60px !important;}\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/1\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_col-xs-12\"][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"115\" read_more=\"VIEW OUR FULL PORTFOLIO\" read_btn=\"1\" image=\"354\" height_image=\"110\" link_show_more=\"#\" button_type=\"btn-default\" button_size=\"btn-sm\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_custom_heading text=\"Ideas into reality\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">We take your brief, throw this into our melting pot.</p>\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">You’re then amazed with our stunning ideas and creative designs.</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1420808375224{padding-top: 270px !important;padding-bottom: 270px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Typewriter.jpg?id=865) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" full_width=\"false\" enable_row_engle=\"false\" engle_position=\"engle-top-right\" height_engle=\"150px\" enable_engle_duplicate=\"false\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"150px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_color=\"#ffffff\" engle_duplicated_color=\"#ffffff\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" enable_parallax=\"false\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_medium=\"1\" row_responsive_small=\"1\" row_responsive_extra_small=\"1\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" text_align=\"right\" column_style=\"title-feature-box\" font_color=\"#222222\"][vc_column_text]\n<h1>IT ALL STARTS<span style=\"display: block;\">WITH AN IDEA!</span></h1>\nNo matter what project you have in mind,\nour creative team start at the begining of\nyour journey, then develop your idea into\nan amazing piece of reality...[/vc_column_text][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"150px\" engle_color=\"#ffffff\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_border_color=\"#e9e9ec\" engle_border_width=\"3\" engle_duplicated_border_width=\"0\" dt_id=\"team\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" css=\".vc_custom_1421773772134{padding-top: 20px !important;}\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#f5f5f5\"][vc_column width=\"1/1\" text_align=\"center\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px;\">FULLY SKILLED</h3>\n<h1 style=\"margin-top: 0px;\">OUR TEAM</h1>\n<p style=\"font-size: 25px; padding-top: 20px;\">We have a diverse range of skills with our team, suited to match any type of client project</p>\n[/vc_column_text][vc_empty_space height=\"40px\"][cshero-team heading_size=\"h1\" heading_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" content_align=\"text-center\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h4\" show_category=\"1\" show_team_position=\"1\" show_team_qualification=\"0\" show_team_experience=\"0\" show_team_contact_info=\"0\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" heading_color=\"#222222\" category=\"4,23,25,24\" width_item=\"300\" margin_item=\"50\" min_slide=\"1\" max_slide=\"3\" title_team_color=\"#888888\" category_color=\"#888888\" social_color=\"#888888\" social_hover_color=\"#ea008c\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" item_bg_color_hover=\"#eeeeee\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421774058357{padding-top: 70px !important;background-image: url(http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/citybg-1new2.jpg?id=1679) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-left\" height_engle=\"150px\" engle_color=\"#ffffff\" engle_uplicated_height=\"150px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#ffffff\" row_head_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"contact\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_duplicate=\"engle-top-left\" enable_engle_style2=\"false\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#ffffff\"][vc_column width=\"1/1\" text_align=\"center\" column_style=\"title-feature-box\"][vc_column_text]\n<h3 style=\"margin-bottom: 0px; color: #222222 !important;\">READY &amp; WAITING</h3>\n<h1 style=\"margin-top: 0px; color: #222222 !important;\">CONTACT US</h1>\n<p style=\"font-size: 25px; color: #222222 !important;\">We\'d love to work on your next project.</p>\n[/vc_column_text][vc_empty_space height=\"70px\"][contact-form-7 id=\"28\" html_class=\"contact-style-1\"][vc_empty_space height=\"39px\"][cs-social title_align=\"text-left\" layout=\"social.layout1\" icon1=\"facebook\" icon1_link=\"#\" icon2=\"twitter\" icon2_link=\"#\" icon3=\"google-plus\" icon3_link=\"#\" icon4=\"pinterest\" icon4_link=\"#\" icon5=\"skype\" icon5_link=\"#\" icon6=\"dribbble\" icon6_link=\"#\" icon7=\"youtube-play\" icon7_link=\"#\" icon8=\"android\" icon8_link=\"#\" icon_color=\"#ffffff\" icon_hover_color=\"#ec008c\" icon_bakground_color=\"#1e73be\" icon_bakground_hover_color=\"#eeee22\" border_style=\"none\" social_item_margin=\"0 10px\" icon_size=\"29px\"][vc_empty_space height=\"43px\"][vc_column_text]Suite 56, Empire State Building, New York, USA\nt: + 01 3467 4759 987 | e: info@spectrum.com[/vc_column_text][vc_empty_space height=\"140px\"][/vc_column][/vc_row][vc_row type=\"ww-custom\" full_width=\"false\" engle_position=\"engle-bottom-right\" height_engle=\"250px\" engle_color=\"#ebebee\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" engle_uplicated_height=\"60px\" css=\".vc_custom_1421773893128{padding-top: 40px !important;padding-bottom: 80px !important;}\" engle_duplicated_height_style2=\"60px\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-6 vc_col-sm-offset-0 vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_custom_heading text=\"Keeping up!!\" font_container=\"tag:h2|font_size:70px|text_align:left|color:%23222222|line_height:90px\" google_fonts=\"font_family:Open%20Sans%3A300%2C300italic%2Cregular%2Citalic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic|font_style:300%20light%20regular%3A300%3Anormal\"][vc_empty_space height=\"20px\"][vc_column_text]\n<p style=\"font-size: 34px; line-height: 48px; font-weight: 300;\">Here at the spectrum theme, we are always blogging and posting details of our projects and client wins.</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" text_align=\"center\" css=\".vc_custom_1421774289019{padding-top: 20px !important;}\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"115\" read_more=\"VIEW ALL OUR NEW POSTS\" read_btn=\"1\" image=\"372\" height_image=\"110\" link_show_more=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/blog-classic-style-2/\" button_type=\"btn-default\" button_size=\"btn-sm\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" height_engle=\"60px\" engle_uplicated_height=\"60px\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" font_color=\"#222222\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" row_head_color=\"#222222\" dt_id=\"blog\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\"][cshero-post-carousel heading_size=\"h2\" title_align=\"text-center\" heading_text_style=\"uppercase\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.default\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"text-center\" show_pager=\"0\" pager_align=\"pager-left text-left\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h4\" show_image=\"1\" crop_image=\"1\" show_category=\"0\" show_description=\"1\" show_popup=\"1\" show_date=\"1\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" title=\"LATEST BLOGS\" title_color=\"#222222\" margin_item=\"0\" item_title_color=\"#222222\" width_image=\"480\" height_image=\"762\" category=\"12\" width_item=\"200\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" content_color=\"#222222\" content_hover_color=\"#ffffff\" item_title_hover_color=\"#bababa\" date_format=\"d F Y\" read_more_icon=\"fa fa-link\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"icon\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" content_padding=\"0\" max_slide=\"5\" nav_arrow_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "4-revision-v1", "", "", "2015-02-03 10:31:00", "2015-02-03 10:31:00", "", "0", "http://localhost/mdeal2/?p=1733", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17654", "1", "2015-12-27 16:49:04", "2015-12-27 16:49:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-27 16:49:04", "2015-12-27 16:49:04", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17653", "1", "2015-12-27 16:42:21", "2015-12-27 16:42:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 16:42:21", "2015-12-27 16:42:21", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17569", "1", "2015-12-16 16:42:04", "2015-12-16 16:42:04", "", "page", "", "publish", "open", "closed", "", "page", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17569", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("491", "1", "2014-12-17 07:36:58", "2014-12-17 07:36:58", "", "Homepage_Corporate_02", "", "inherit", "open", "open", "", "homepage_corporate_02", "", "", "2014-12-17 07:36:58", "2014-12-17 07:36:58", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Homepage_Corporate_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("520", "1", "2014-12-18 03:39:27", "2014-12-18 03:39:27", "", "sj", "", "inherit", "open", "open", "", "sj", "", "", "2014-12-18 03:39:27", "2014-12-18 03:39:27", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/sj.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("570", "1", "2014-12-20 01:47:44", "2014-12-20 01:47:44", "", "parallax-about", "", "inherit", "open", "open", "", "parallax-about", "", "", "2014-12-20 01:47:44", "2014-12-20 01:47:44", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/parallax-about.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1182", "1", "2015-01-12 14:52:23", "2015-01-12 14:52:23", "", "Portfolio12", "", "inherit", "open", "open", "", "portfolio12", "", "", "2015-01-12 14:52:23", "2015-01-12 14:52:23", "", "1095", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1183", "1", "2015-01-12 14:52:25", "2015-01-12 14:52:25", "", "Portfolio13", "", "inherit", "open", "open", "", "portfolio13", "", "", "2015-01-12 14:52:25", "2015-01-12 14:52:25", "", "1095", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("16707", "1", "2015-07-16 12:45:50", "2015-07-16 12:45:50", "", "aboutpage", "", "inherit", "open", "open", "", "aboutpage", "", "", "2015-07-16 12:45:50", "2015-07-16 12:45:50", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/aboutpage.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("615", "1", "2014-12-24 02:56:18", "2014-12-24 02:56:18", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "LITTLE BEACH HUT", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples", "", "", "2016-01-12 16:04:56", "2016-01-12 16:04:56", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=615", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("616", "1", "2014-12-24 02:55:23", "2014-12-24 02:55:23", "", "post-cat1", "", "inherit", "open", "open", "", "post-cat1", "", "", "2014-12-24 02:55:23", "2014-12-24 02:55:23", "", "615", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/post-cat1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("617", "1", "2014-12-24 02:55:25", "2014-12-24 02:55:25", "", "post-cat2", "", "inherit", "open", "open", "", "post-cat2", "", "", "2014-12-24 02:55:25", "2014-12-24 02:55:25", "", "615", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/post-cat2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1375", "1", "2015-01-13 12:41:35", "2015-01-13 12:41:35", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "LITTLE BEACH HUT", "", "inherit", "open", "open", "", "615-revision-v1", "", "", "2015-01-13 12:41:35", "2015-01-13 12:41:35", "", "615", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/615-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("618", "1", "2014-12-24 02:56:18", "2014-12-24 02:56:18", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "615-revision-v1", "", "", "2014-12-24 02:56:18", "2014-12-24 02:56:18", "", "615", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/615-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("623", "1", "2014-12-29 03:42:17", "2014-12-29 03:42:17", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "BEARS IN THE WOOD", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-2", "", "", "2016-01-12 16:03:41", "2016-01-12 16:03:41", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=623", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1368", "1", "2015-01-13 12:29:48", "2015-01-13 12:29:48", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "BEARS IN THE WOOD", "", "inherit", "open", "open", "", "623-revision-v1", "", "", "2015-01-13 12:29:48", "2015-01-13 12:29:48", "", "623", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/623-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("624", "1", "2014-12-24 03:42:17", "2014-12-24 03:42:17", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "623-revision-v1", "", "", "2014-12-24 03:42:17", "2014-12-24 03:42:17", "", "623", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/623-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("625", "1", "2014-12-24 03:51:36", "2014-12-24 03:51:36", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "LITTLE BOAT TOWN", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-3", "", "", "2016-01-12 16:05:01", "2016-01-12 16:05:01", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=625", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1364", "1", "2015-01-13 12:27:21", "2015-01-13 12:27:21", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "LITTLE BOAT TOWN", "", "inherit", "open", "open", "", "625-revision-v1", "", "", "2015-01-13 12:27:21", "2015-01-13 12:27:21", "", "625", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/625-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("626", "1", "2014-12-24 03:51:36", "2014-12-24 03:51:36", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "625-revision-v1", "", "", "2014-12-24 03:51:36", "2014-12-24 03:51:36", "", "625", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/625-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("627", "1", "2014-12-28 03:52:01", "2014-12-28 03:52:01", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "HEALTHY BREAKFAST", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-4", "", "", "2016-01-12 16:03:46", "2016-01-12 16:03:46", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=627", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1360", "1", "2015-01-13 12:24:35", "2015-01-13 12:24:35", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "HEALTHY BREAKFAST", "", "inherit", "open", "open", "", "627-revision-v1", "", "", "2015-01-13 12:24:35", "2015-01-13 12:24:35", "", "627", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/627-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("628", "1", "2014-12-24 03:52:01", "2014-12-24 03:52:01", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "627-revision-v1", "", "", "2014-12-24 03:52:01", "2014-12-24 03:52:01", "", "627", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/627-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("629", "1", "2014-12-24 03:52:47", "2014-12-24 03:52:47", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "HOT LAKE SPRINGS", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-5", "", "", "2016-01-12 16:05:05", "2016-01-12 16:05:05", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=629", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("630", "1", "2014-12-24 03:52:51", "2014-12-24 03:52:51", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "SAND DUNES", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-6", "", "", "2016-01-12 16:03:59", "2016-01-12 16:03:59", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=630", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1357", "1", "2015-01-13 12:19:48", "2015-01-13 12:19:48", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "HOT LAKE SPRINGS", "", "inherit", "open", "open", "", "629-revision-v1", "", "", "2015-01-13 12:19:48", "2015-01-13 12:19:48", "", "629", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("631", "1", "2014-12-24 03:52:47", "2014-12-24 03:52:47", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "629-revision-v1", "", "", "2014-12-24 03:52:47", "2014-12-24 03:52:47", "", "629", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1351", "1", "2015-01-13 12:11:48", "2015-01-13 12:11:48", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "SAND DUNES", "", "inherit", "open", "open", "", "630-revision-v1", "", "", "2015-01-13 12:11:48", "2015-01-13 12:11:48", "", "630", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/630-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("632", "1", "2014-12-24 03:52:51", "2014-12-24 03:52:51", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "630-revision-v1", "", "", "2014-12-24 03:52:51", "2014-12-24 03:52:51", "", "630", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/630-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("633", "1", "2014-12-24 03:53:25", "2014-12-24 03:53:25", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "VAN IN DISTANCE", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-7", "", "", "2016-01-12 16:03:55", "2016-01-12 16:03:55", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=633", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1350", "1", "2015-01-13 12:10:56", "2015-01-13 12:10:56", "", "SandDune", "", "inherit", "open", "open", "", "sanddune", "", "", "2015-01-13 12:10:56", "2015-01-13 12:10:56", "", "630", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/SandDune.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("635", "1", "2014-12-24 03:53:47", "2014-12-24 03:53:47", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "GRAND CANYON", "", "publish", "open", "open", "", "parallax-scrolling-websites-a-collection-of-beautiful-examples-8", "", "", "2015-02-09 16:48:22", "2015-02-09 16:48:22", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=635", "0", "post", "", "1");
INSERT INTO `wp_posts` VALUES("1347", "1", "2015-01-13 12:02:38", "2015-01-13 12:02:38", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "VAN IN DISTANCE", "", "inherit", "open", "open", "", "633-revision-v1", "", "", "2015-01-13 12:02:38", "2015-01-13 12:02:38", "", "633", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/633-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("636", "1", "2014-12-24 03:53:25", "2014-12-24 03:53:25", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "633-revision-v1", "", "", "2014-12-24 03:53:25", "2014-12-24 03:53:25", "", "633", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/633-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("637", "1", "2014-12-24 03:53:47", "2014-12-24 03:53:47", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "635-revision-v1", "", "", "2014-12-24 03:53:47", "2014-12-24 03:53:47", "", "635", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/635-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1124", "1", "2015-01-12 13:13:25", "2015-01-12 13:13:25", "", "Portfolio7", "", "inherit", "open", "open", "", "portfolio7", "", "", "2015-01-12 13:13:25", "2015-01-12 13:13:25", "", "240", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1003", "1", "2015-01-12 11:13:16", "2015-01-12 11:13:16", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Coffee & Cookie Time", "", "publish", "open", "open", "", "coffee-cookie-time", "", "", "2016-01-12 15:57:28", "2016-01-12 15:57:28", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/coffee-cookie-time/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("657", "1", "2015-01-05 03:56:49", "2015-01-05 03:56:49", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "BEAUTIFUL EXAMPLES", "", "publish", "open", "open", "", "this-is-sticky-post-type-a-collection-of-beautiful-examples", "", "", "2015-07-07 01:55:47", "2015-07-07 01:55:47", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=657", "0", "post", "", "4");
INSERT INTO `wp_posts` VALUES("658", "1", "2015-01-05 03:56:09", "2015-01-05 03:56:09", "", "post1", "", "inherit", "open", "open", "", "post1", "", "", "2015-01-05 03:56:09", "2015-01-05 03:56:09", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/post1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("659", "1", "2015-01-05 03:56:13", "2015-01-05 03:56:13", "", "post2", "", "inherit", "open", "open", "", "post2", "", "", "2015-01-05 03:56:13", "2015-01-05 03:56:13", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/post2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("661", "1", "2015-01-05 03:56:49", "2015-01-05 03:56:49", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "This is Sticky Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "657-revision-v1", "", "", "2015-01-05 03:56:49", "2015-01-05 03:56:49", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("662", "1", "2015-01-05 03:58:16", "2015-01-05 03:58:16", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "ON THE TRACKS", "", "publish", "open", "open", "", "standard-post-type-a-collection-of-beautiful-examples", "", "", "2016-01-12 16:02:08", "2016-01-12 16:02:08", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=662", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("663", "1", "2015-01-05 03:58:16", "2015-01-05 03:58:16", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Standard Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "662-revision-v1", "", "", "2015-01-05 03:58:16", "2015-01-05 03:58:16", "", "662", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/662-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("664", "1", "2015-01-05 03:59:24", "2015-01-05 03:59:24", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\r\n\r\n[gallery columns=\"2\" size=\"full\" ids=\"742,659\"]", "Consectetur adipiscing elit", "", "publish", "open", "open", "", "this-is-gallery-post-type-a-collection-of-beautiful-examples", "", "", "2016-01-22 02:34:47", "2016-01-22 02:34:47", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=664", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("17485", "1", "2015-12-06 16:02:09", "2015-12-06 16:02:09", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n[gallery columns=\"2\" size=\"full\" ids=\"742,659\"]", "This is Gallery", "", "inherit", "open", "open", "", "664-revision-v1", "", "", "2015-12-06 16:02:09", "2015-12-06 16:02:09", "", "664", "http://localhost/mdeal2/664-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("665", "1", "2015-01-05 03:59:24", "2015-01-05 03:59:24", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n[gallery columns=\"2\" link=\"none\" size=\"full\" ids=\"660,659\"]", "This is Gallery Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "664-revision-v1", "", "", "2015-01-05 03:59:24", "2015-01-05 03:59:24", "", "664", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/664-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("666", "1", "2015-01-05 04:00:20", "2015-01-05 04:00:20", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Aliquam faucibus mliquam", "", "publish", "open", "open", "", "this-is-video-post-type-a-collection-of-beautiful-examples", "", "", "2016-01-12 16:01:57", "2016-01-12 16:01:57", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=666", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("667", "1", "2015-01-05 04:00:20", "2015-01-05 04:00:20", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "This is Video Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "666-revision-v1", "", "", "2015-01-05 04:00:20", "2015-01-05 04:00:20", "", "666", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/666-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("669", "1", "2015-01-05 07:22:39", "2015-01-05 07:22:39", "", "PostPage-Style1", "", "inherit", "open", "open", "", "postpage-style1", "", "", "2015-01-07 08:16:10", "2015-01-07 08:16:10", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("671", "1", "2015-01-06 02:11:20", "2015-01-06 02:11:20", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "633-autosave-v1", "", "", "2015-01-06 02:11:20", "2015-01-06 02:11:20", "", "633", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/633-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("672", "1", "2015-01-06 02:11:24", "2015-01-06 02:11:24", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples2", "", "inherit", "open", "open", "", "633-revision-v1", "", "", "2015-01-06 02:11:24", "2015-01-06 02:11:24", "", "633", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/633-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("726", "1", "2015-01-07 03:36:32", "2015-01-07 03:36:32", "", "Pages", "", "publish", "open", "closed", "", "clients-2", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=726", "18", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1346", "1", "2015-01-13 12:02:26", "2015-01-13 12:02:26", "", "VanInDistance", "", "inherit", "open", "open", "", "vanindistance", "", "", "2015-01-13 12:02:26", "2015-01-13 12:02:26", "", "633", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/VanInDistance.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17530", "1", "2015-12-12 00:25:41", "2015-12-12 00:25:41", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice Icon Box Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<div class=\"row\">\r\n	<div class=\"col-md-4 service-box service-icon-left\">\r\n		<div class=\"service-icon\">\r\n			<i class=\"fa fa-code icon-mini-effect icon-effect-1\"></i>\r\n		</div>\r\n		<div class=\"service-content\">\r\n			<h4>Left Icon Box</h4>\r\n			<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n		</div>\r\n	</div>\r\n\r\n	<div class=\"col-md-4 service-box service-icon-left\">\r\n		<div class=\"service-icon\">\r\n			<i class=\"fa fa-globe icon-mini-effect icon-effect-2\"></i>\r\n		</div>\r\n		<div class=\"service-content\">\r\n			<h4>Left Icon Box</h4>\r\n			<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n		</div>\r\n	</div>\r\n\r\n	<div class=\"col-md-4 service-box service-icon-left\">\r\n		<div class=\"service-icon\">\r\n			<i class=\"fa fa-fire icon-mini-effect icon-effect-2 gray-icon\"></i>\r\n		</div>\r\n		<div class=\"service-content\">\r\n			<h4>Left Icon Box</h4>\r\n			<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n		</div>\r\n	</div>\r\n</div>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>            \r\n			\r\n<div class=\"row\">\r\n    <div class=\"col-md-4 service-box service-icon-left-more\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-bolt icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Left Icon Box</h4>\r\n            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n        </div>\r\n    </div>\r\n \r\n    <div class=\"col-md-4 service-box service-icon-left-more\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Left Icon Box</h4>\r\n            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n        </div>\r\n    </div>\r\n  \r\n    <div class=\"col-md-4 service-box service-icon-left\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-small\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Left Icon Box</h4>\r\n            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n   \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<!-- Divider -->\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-medium-effect icon-effect-1\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-medium-effect icon-effect-2\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-medium-effect icon-effect-1 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n   \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-medium-effect icon-effect-2 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n\r\n</div>\r\n\r\n<!-- Divider -->\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-large-effect icon-effect-1\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n  \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-large-effect icon-effect-2\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-large-effect icon-effect-1 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-large-effect icon-effect-2 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<!-- Divider -->\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-paperclip icon-medium-effect icon-effect-1\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-briefcase icon-medium-effect icon-effect-2\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-archive icon-medium-effect icon-effect-1 gray-icon\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n   \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-leaf icon-medium-effect icon-effect-2 gray-icon\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div> </div>", "ICON BOXES", "", "publish", "open", "open", "", "icon-boxes", "", "", "2015-12-12 00:25:41", "2015-12-12 00:25:41", "", "0", "http://localhost/mdeal2/?page_id=17530", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17529", "1", "2015-12-11 15:16:26", "2015-12-11 15:16:26", " ", "", "", "publish", "open", "closed", "", "17529", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17529", "25", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("739", "1", "2015-07-07 01:55:23", "2015-07-07 01:55:23", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n<blockquote><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p></blockquote>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n<p><img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" /></p>\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n", "BEAUTIFUL EXAMPLES", "", "inherit", "open", "open", "", "657-autosave-v1", "", "", "2015-07-07 01:55:23", "2015-07-07 01:55:23", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("740", "1", "2015-01-07 08:16:28", "2015-01-07 08:16:28", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<img src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" class=\"alignnone size-full wp-image-669\" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "This is Sticky Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "657-revision-v1", "", "", "2015-01-07 08:16:28", "2015-01-07 08:16:28", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1574", "1", "2015-01-14 14:05:40", "2015-01-14 14:05:40", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Beautiful Examples", "", "inherit", "open", "open", "", "657-revision-v1", "", "", "2015-01-14 14:05:40", "2015-01-14 14:05:40", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("741", "1", "2015-01-07 08:45:07", "2015-01-07 08:45:07", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "This is Sticky Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "657-revision-v1", "", "", "2015-01-07 08:45:07", "2015-01-07 08:45:07", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("742", "1", "2015-01-07 09:29:25", "2015-01-07 09:29:25", "", "post3", "", "inherit", "open", "open", "", "post3-2", "", "", "2015-01-07 09:29:25", "2015-01-07 09:29:25", "", "664", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/post31.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("743", "1", "2015-01-07 09:30:03", "2015-01-07 09:30:03", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n[gallery columns=\"2\" size=\"full\" ids=\"742,659\"]", "This is Gallery Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "664-revision-v1", "", "", "2015-01-07 09:30:03", "2015-01-07 09:30:03", "", "664", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/664-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("780", "1", "2015-01-07 14:33:54", "2015-01-07 14:33:54", "", "42dcc5ea", "", "inherit", "open", "open", "", "42dcc5ea", "", "", "2015-01-07 14:33:54", "2015-01-07 14:33:54", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("781", "1", "2015-01-07 14:33:56", "2015-01-07 14:33:56", "", "42dcc5ea1", "", "inherit", "open", "open", "", "42dcc5ea1", "", "", "2015-01-07 14:33:56", "2015-01-07 14:33:56", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("782", "1", "2015-01-07 14:33:58", "2015-01-07 14:33:58", "", "42dcc5ea2", "", "inherit", "open", "open", "", "42dcc5ea2", "", "", "2015-01-07 14:33:58", "2015-01-07 14:33:58", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("783", "1", "2015-01-07 14:33:59", "2015-01-07 14:33:59", "", "42dcc5ea3", "", "inherit", "open", "open", "", "42dcc5ea3", "", "", "2015-01-07 14:33:59", "2015-01-07 14:33:59", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("785", "1", "2015-01-07 14:34:02", "2015-01-07 14:34:02", "", "42dcc5ea5", "", "inherit", "open", "open", "", "42dcc5ea5", "", "", "2015-01-07 14:34:02", "2015-01-07 14:34:02", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("786", "1", "2015-01-07 14:34:04", "2015-01-07 14:34:04", "", "42dcc5ea6", "", "inherit", "open", "open", "", "42dcc5ea6", "", "", "2015-01-07 14:34:04", "2015-01-07 14:34:04", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("787", "1", "2015-01-07 14:34:06", "2015-01-07 14:34:06", "", "42dcc5ea7", "", "inherit", "open", "open", "", "42dcc5ea7", "", "", "2015-01-07 14:34:06", "2015-01-07 14:34:06", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/42dcc5ea7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("856", "1", "2015-01-09 09:52:12", "2015-01-09 09:52:12", "", "headshot1", "", "inherit", "open", "open", "", "headshot1", "", "", "2015-01-09 09:52:12", "2015-01-09 09:52:12", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/headshot1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("862", "1", "2015-01-09 10:00:26", "2015-01-09 10:00:26", "", "citybg-1", "", "inherit", "open", "open", "", "citybg-1", "", "", "2015-01-09 10:00:26", "2015-01-09 10:00:26", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/citybg-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("836", "1", "2015-01-08 08:28:34", "2015-01-08 08:28:34", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Quote Post Type", "", "publish", "open", "open", "", "quote-post-type", "", "", "2016-01-12 16:01:23", "2016-01-12 16:01:23", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=836", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("837", "1", "2015-01-08 08:28:34", "2015-01-08 08:28:34", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Quote Post Type", "", "inherit", "open", "open", "", "836-revision-v1", "", "", "2015-01-08 08:28:34", "2015-01-08 08:28:34", "", "836", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/836-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("841", "1", "2015-01-09 03:08:11", "2015-01-09 03:08:11", "", "user-admin", "", "inherit", "open", "open", "", "user-admin", "", "", "2015-01-09 03:08:11", "2015-01-09 03:08:11", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/user-admin.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("839", "1", "2015-01-08 08:33:12", "2015-01-08 08:33:12", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Work in group", "", "publish", "open", "open", "", "this-is-audio-post-type-a-collection-of-beautiful-examples", "", "", "2016-09-12 02:59:36", "2016-09-12 02:59:36", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=839", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("840", "1", "2015-01-08 08:33:12", "2015-01-08 08:33:12", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "This is Audio Post Type:  A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "839-revision-v1", "", "", "2015-01-08 08:33:12", "2015-01-08 08:33:12", "", "839", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/839-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("846", "1", "2015-01-09 07:01:58", "2015-01-09 07:01:58", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Parallax Scrolling Websites: A Collection Of Beautiful Examples", "", "inherit", "open", "open", "", "635-revision-v1", "", "", "2015-01-09 07:01:58", "2015-01-09 07:01:58", "", "635", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/635-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("854", "1", "2015-01-09 09:19:59", "2015-01-09 09:19:59", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Echo\'s In The Underworld", "", "inherit", "open", "open", "", "839-autosave-v1", "", "", "2015-01-09 09:19:59", "2015-01-09 09:19:59", "", "839", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/839-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1341", "1", "2015-01-13 11:51:14", "2015-01-13 11:51:14", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Grand Canyon", "", "inherit", "open", "open", "", "635-revision-v1", "", "", "2015-01-13 11:51:14", "2015-01-13 11:51:14", "", "635", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/635-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("855", "1", "2015-01-09 09:21:22", "2015-01-09 09:21:22", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Echo\'s In The Underworld", "", "inherit", "open", "open", "", "839-revision-v1", "", "", "2015-01-09 09:21:22", "2015-01-09 09:21:22", "", "839", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/839-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("857", "1", "2015-01-09 09:52:14", "2015-01-09 09:52:14", "", "headshot2", "", "inherit", "open", "open", "", "headshot2-2", "", "", "2015-01-09 09:52:14", "2015-01-09 09:52:14", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/headshot2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("858", "1", "2015-01-09 09:52:15", "2015-01-09 09:52:15", "", "headshot4", "", "inherit", "open", "open", "", "headshot4-2", "", "", "2015-01-09 09:52:15", "2015-01-09 09:52:15", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/headshot4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("859", "1", "2015-01-09 09:52:16", "2015-01-09 09:52:16", "", "headshot3", "", "inherit", "open", "open", "", "headshot3-2", "", "", "2015-01-09 09:52:16", "2015-01-09 09:52:16", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/headshot3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("860", "1", "2015-01-09 09:52:17", "2015-01-09 09:52:17", "", "headshot6", "", "inherit", "open", "open", "", "headshot6-2", "", "", "2015-01-09 09:52:17", "2015-01-09 09:52:17", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/headshot6.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("861", "1", "2015-01-09 09:52:18", "2015-01-09 09:52:18", "", "headshot5", "", "inherit", "open", "open", "", "headshot5-2", "", "", "2015-01-09 09:52:18", "2015-01-09 09:52:18", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/headshot5.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("885", "1", "2015-01-09 12:07:30", "2015-01-09 12:07:30", "", "MasterSlide2", "", "inherit", "open", "open", "", "masterslide2", "", "", "2015-01-09 12:07:30", "2015-01-09 12:07:30", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/MasterSlide2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("910", "1", "2015-01-09 16:04:43", "2015-01-09 16:04:43", "", "antlers", "", "inherit", "open", "open", "", "antlers", "", "", "2015-01-09 16:04:43", "2015-01-09 16:04:43", "", "18", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/antlers.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17513", "1", "2015-12-08 16:58:04", "2015-12-08 16:58:04", " ", "", "", "publish", "open", "closed", "", "17513", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17513", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17574", "1", "2015-12-17 15:41:50", "2015-12-17 15:41:50", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:41:50", "2015-12-17 15:41:50", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17575", "1", "2015-12-17 15:44:55", "2015-12-17 15:44:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:44:55", "2015-12-17 15:44:55", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1465", "1", "2015-01-14 01:51:54", "2015-01-14 01:51:54", "<p><label>Name *</label>    [text* your-name] </p>\r\n\r\n<p><label>Email * </label>    [email* your-email] </p>\r\n\r\n<p><label>Subject *</label>      [text your-subject] </p>\r\n\r\n<p><label>Message *</label>     [textarea your-message] </p>\r\n\r\n<p>[submit class:btn class:btn-default-alt class:size-default \"Submit\"]</p>\n[your-subject]\n[your-name] <wordpress@demo.cmssuperheroes.com/Wordpress>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP Spectrum (https://themeforest.net/user/pl_theme/portfolio)\nphuongk3a@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP Spectrum <wordpress@demo.cmssuperheroes.com/Wordpress>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nThis input is too long.\nThis input is too short.", "Conact Us v2", "", "publish", "open", "open", "", "conact-us-1", "", "", "2016-09-09 14:11:30", "2016-09-09 14:11:30", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=wpcf7_contact_form&#038;p=1465", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("1125", "1", "2015-01-12 13:13:27", "2015-01-12 13:13:27", "", "Portfolio8", "", "inherit", "open", "open", "", "portfolio8", "", "", "2015-01-12 13:13:27", "2015-01-12 13:13:27", "", "240", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1007", "1", "2015-01-12 11:13:17", "2015-01-12 11:13:17", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "All you need right here", "", "publish", "open", "open", "", "all-you-need-right-here", "", "", "2016-01-12 15:57:25", "2016-01-12 15:57:25", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/all-you-need-right-here/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("1011", "1", "2015-01-12 11:13:18", "2015-01-12 11:13:18", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Sitting at the Cafe", "", "publish", "open", "open", "", "sitting-at-the-cafe", "", "", "2016-01-12 15:56:57", "2016-01-12 15:56:57", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/sitting-at-the-cafe/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("1015", "1", "2015-01-12 11:13:18", "2015-01-12 11:13:18", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Let´s Read a Good Book", "", "publish", "open", "open", "", "lets-read-a-good-book", "", "", "2016-01-12 15:57:01", "2016-01-12 15:57:01", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/lets-read-a-good-book/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("1019", "1", "2015-01-12 11:13:18", "2015-01-12 11:13:18", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "BOX – EXT. CONTENT", "", "publish", "open", "open", "", "the-big-city-skyline", "", "", "2016-01-12 15:57:22", "2016-01-12 15:57:22", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-big-city-skyline/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("17711", "1", "2016-01-12 15:54:18", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2016-01-12 15:54:18", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?p=17711", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("17710", "1", "2016-01-12 15:57:34", "2016-01-12 15:57:34", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "Coffee & Cookie Time", "", "inherit", "closed", "closed", "", "1003-autosave-v1", "", "", "2016-01-12 15:57:34", "2016-01-12 15:57:34", "", "1003", "http://localhost/mdeal2/1003-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1023", "1", "2015-01-12 11:13:19", "2015-01-12 11:13:19", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "BUSINESS CARD BLUE", "", "publish", "open", "open", "", "treat-yourself-with-salad", "", "", "2016-01-12 15:56:32", "2016-01-12 15:56:32", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/treat-yourself-with-salad/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("1027", "1", "2015-01-12 11:13:19", "2015-01-12 11:13:19", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Typewriter taken apart", "", "publish", "open", "open", "", "typewriter-taken-apart", "", "", "2016-01-12 15:56:53", "2016-01-12 15:56:53", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/typewriter-taken-apart/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("1031", "1", "2015-01-12 11:13:20", "2015-01-12 11:13:20", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "What a Cozy Place", "", "publish", "open", "open", "", "what-a-cozy-place", "", "", "2016-01-12 15:56:29", "2016-01-12 15:56:29", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/what-a-cozy-place/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("17707", "1", "2016-01-11 16:18:20", "2016-01-11 16:18:20", "", "portfolio-7", "", "inherit", "open", "closed", "", "portfolio-7", "", "", "2016-01-11 16:18:20", "2016-01-11 16:18:20", "", "1047", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1047", "1", "2015-01-12 11:13:22", "2015-01-12 11:13:22", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "The Mobile Revolution is Here", "", "publish", "open", "open", "", "the-mobile-revolution-is-here", "", "", "2016-01-12 15:56:24", "2016-01-12 15:56:24", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/essential_grid/the-mobile-revolution-is-here/", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("1095", "1", "2015-01-12 11:46:42", "2015-01-12 11:46:42", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\nPellentesque eget nisl nec dolor sollicitudin pulvinar non a nisl. Morbi eget laoreet erat, in tincidunt neque. Morbi luctus hendrerit sagittis. Praesent vehicula eros tortor, ac ultricies metus cursus vitae. Nullam felis enim, volutpat sed tristique id, consectetur eget purus. In porta augue a magna tristique eleifend. Aenean imperdiet rhoncus eros, ut imperdiet sapien suscipit sed. Curabitur non euismod sem. Fusce ut placerat turpis. Nulla facilisi. Aliquam erat volutpat. Vivamus rhoncus id nibh at iaculis. Suspendisse sodales efficitur fringilla. Phasellus nec justo tincidunt, fermentum neque vel, maximus diam. Sed et pretium purus. Vestibulum non nulla sit amet elit commodo varius.[/vc_column_text][/vc_column][/vc_row]", "Aurum", "", "publish", "open", "open", "", "lovely-mountain-view", "", "", "2015-02-17 17:21:36", "2015-02-17 17:21:36", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1095", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1096", "1", "2015-01-12 11:46:26", "2015-01-12 11:46:26", "", "Portfolio1", "", "inherit", "open", "open", "", "portfolio1", "", "", "2015-01-12 11:46:26", "2015-01-12 11:46:26", "", "1095", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1097", "1", "2015-01-12 11:48:39", "2015-01-12 11:48:39", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\nPellentesque nisl est, suscipit eu fermentum eget, condimentum non nibh. Quisque a vulputate turpis. Vivamus posuere magna sem, in porta orci facilisis sed. Sed et dolor ac nibh dictum condimentum. Cras libero nisl, dapibus sit amet sollicitudin nec, pellentesque eu odio. Nam consequat volutpat lectus, sed suscipit risus gravida nec. Proin vel auctor nibh. Nulla at fringilla justo. Aliquam blandit vestibulum risus id finibus. Curabitur vel auctor velit, vel condimentum diam.\r\n<ul>\r\n	<li>Pellentesque nisl est, suscipit eu fermentum eget</li>\r\n	<li>Sed et dolor ac nibh dictum condimentum</li>\r\n	<li>Aliquam blandit vestibulum risus id finibus</li>\r\n</ul>\r\nQuisque auctor porttitor velit vitae tempor. Integer sed mattis est. Curabitur euismod libero a risus tempor, sed blandit ex eleifend. Duis ultricies vel turpis a aliquam. Integer metus massa, luctus nec finibus eu, tincidunt et dui. Nam laoreet pulvinar nulla, facilisis tincidunt felis aliquet non. Sed eget leo neque. Sed vel erat tempor, tincidunt ante non, eleifend augue.[/vc_column_text][/vc_column][/vc_row]", "Roam", "", "publish", "open", "open", "", "foxy", "", "", "2015-02-17 17:22:36", "2015-02-17 17:22:36", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1097", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1099", "1", "2015-01-12 11:50:50", "2015-01-12 11:50:50", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\nPellentesque eget nisl nec dolor sollicitudin pulvinar non a nisl. Morbi eget laoreet erat, in tincidunt neque. Morbi luctus hendrerit sagittis. Praesent vehicula eros tortor, ac ultricies metus cursus vitae. Nullam felis enim, volutpat sed tristique id, consectetur eget purus. In porta augue a magna tristique eleifend. Aenean imperdiet rhoncus eros, ut imperdiet sapien suscipit sed. Curabitur non euismod sem. Fusce ut placerat turpis. Nulla facilisi. Aliquam erat volutpat. Vivamus rhoncus id nibh at iaculis. Suspendisse sodales efficitur fringilla. Phasellus nec justo tincidunt, fermentum neque vel, maximus diam. Sed et pretium purus. Vestibulum non nulla sit amet elit commodo varius.[/vc_column_text][/vc_column][/vc_row]", "Soul Digital", "", "publish", "open", "open", "", "horses-in-the-fields", "", "", "2015-02-17 17:22:54", "2015-02-17 17:22:54", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1099", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1102", "1", "2015-01-12 15:36:07", "2015-01-12 15:36:07", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"-15\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-asterisk\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"TEMPERATURE \" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"10\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-level-up\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"METRES OF SNOW\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"66\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-exclamation-triangle\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WARNING SIGNS\" heading_color=\"#888888\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Masala", "", "publish", "open", "open", "", "ice-blast", "", "", "2015-02-17 17:23:18", "2015-02-17 17:23:18", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1102", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1105", "1", "2015-01-12 12:09:11", "2015-01-12 12:09:11", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row]", "Below The Grand Canyon", "", "inherit", "open", "open", "", "243-autosave-v1", "", "", "2015-01-12 12:09:11", "2015-01-12 12:09:11", "", "243", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/243-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1106", "1", "2015-01-12 12:11:37", "2015-01-12 12:11:37", "Donec mattis felis sit amet viverra elementum. Nullam rutrum sit amet nisl eu rhoncus. Duis tristique dolor magna, vitae mattis mauris consectetur elementum.", "KERRY BRADSHAW", "", "publish", "open", "open", "", "kerry-bradshaw", "", "", "2016-01-18 15:26:28", "2016-01-18 15:26:28", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=testimonial&#038;p=1106", "0", "testimonial", "", "0");
INSERT INTO `wp_posts` VALUES("1107", "1", "2015-01-12 12:11:27", "2015-01-12 12:11:27", "", "testimonial2", "", "inherit", "open", "open", "", "testimonial2", "", "", "2015-01-12 12:11:27", "2015-01-12 12:11:27", "", "1106", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/testimonial2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1109", "1", "2015-01-12 12:24:30", "2015-01-12 12:24:30", "Donec mattis felis sit amet viverra elementum. Nullam rutrum sit amet nisl eu rhoncus. Duis tristique dolor magna, vitae mattis mauris consectetur elementum.", "DWAYNE ANDREWS", "", "publish", "open", "open", "", "dwayne-andrews", "", "", "2016-01-18 15:26:24", "2016-01-18 15:26:24", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=testimonial&#038;p=1109", "0", "testimonial", "", "0");
INSERT INTO `wp_posts` VALUES("1112", "1", "2015-01-12 12:19:34", "2015-01-12 12:19:34", "", "Team1", "", "inherit", "open", "open", "", "team1-2", "", "", "2015-01-12 12:19:34", "2015-01-12 12:19:34", "", "1109", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Team1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1113", "1", "2015-01-12 12:27:38", "2015-01-12 12:27:38", "Donec mattis felis sit amet viverra elementum. Nullam rutrum sit amet nisl eu rhoncus. Duis tristique dolor magna, vitae mattis mauris consectetur elementum.", "JOHN DEERE", "", "publish", "open", "open", "", "john-deere", "", "", "2016-01-18 15:26:21", "2016-01-18 15:26:21", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=testimonial&#038;p=1113", "0", "testimonial", "", "0");
INSERT INTO `wp_posts` VALUES("1114", "1", "2015-01-12 12:26:37", "2015-01-12 12:26:37", "", "Team2", "", "inherit", "open", "open", "", "team2", "", "", "2015-01-12 12:26:37", "2015-01-12 12:26:37", "", "1113", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Team2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1116", "1", "2015-01-12 12:30:18", "2015-01-12 12:30:18", "", "Portfolio4", "", "inherit", "open", "open", "", "portfolio4", "", "", "2015-01-12 12:30:18", "2015-01-12 12:30:18", "", "243", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1119", "1", "2015-01-12 12:32:19", "2015-01-12 12:32:19", "", "Portfolio5", "", "inherit", "open", "open", "", "portfolio5", "", "", "2015-01-12 12:32:19", "2015-01-12 12:32:19", "", "243", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1121", "1", "2015-01-12 12:45:31", "2015-01-12 12:45:31", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" icon=\"fa fa-line-chart\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WIND SPEED\" heading_color=\"#888888\" digit=\"13\" digit_font_size=\"71px\" digit_font_color=\"#222222\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" icon=\"fa fa-sun-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HOURS OF SUN\" heading_color=\"#888888\" digit=\"10\" digit_font_size=\"71px\" digit_font_color=\"#222222\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" icon=\"fa fa-sun-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HOURS OF SUN\" heading_color=\"#888888\" digit=\"10\" digit_font_size=\"71px\" digit_font_color=\"#222222\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Fog Over The Calm Sea", "", "inherit", "open", "open", "", "238-autosave-v1", "", "", "2015-01-12 12:45:31", "2015-01-12 12:45:31", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/238-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1122", "1", "2015-01-12 12:51:56", "2015-01-12 12:51:56", "", "Portfolio6", "", "inherit", "open", "open", "", "portfolio6", "", "", "2015-01-12 12:51:56", "2015-01-12 12:51:56", "", "238", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1123", "1", "2015-02-09 15:40:16", "2015-02-09 15:40:16", "<p>[vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur pibus leo.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"498\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-bus\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"CAPACITY\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"480\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-tachometer\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HIGHEST SPEED\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"1234\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-angle-double-right\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"MILES DRIVEN\" heading_color=\"#888888\"][/vc_column][/vc_row]</p>\n", "Willow Tree Coffee", "", "inherit", "open", "open", "", "240-autosave-v1", "", "", "2015-02-09 15:40:16", "2015-02-09 15:40:16", "", "240", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/240-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1148", "1", "2015-01-12 14:07:15", "2015-01-12 14:07:15", "", "polygonbg2", "", "inherit", "open", "open", "", "polygonbg2", "", "", "2015-01-12 14:07:15", "2015-01-12 14:07:15", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/polygonbg2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1149", "1", "2015-02-09 17:14:08", "2015-02-09 17:14:08", "<p>[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"7\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-sun-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"SUNRISE\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"9\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-moon-o\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"SUNSET\" heading_color=\"#888888\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"33\" digit_font_size=\"71px\" digit_font_color=\"#222222\" text_style=\"none\" icon=\"fa fa-umbrella\" icon_size=\"40px\" icon_color=\"#ec008c\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"RAINFALL\" heading_color=\"#888888\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.</p>\n<p>Cras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.[/vc_column_text][/vc_column][/vc_row]</p>\n", "Prisma", "", "inherit", "open", "open", "", "241-autosave-v1", "", "", "2015-02-09 17:14:08", "2015-02-09 17:14:08", "", "241", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/241-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1152", "1", "2015-01-12 14:20:40", "2015-01-12 14:20:40", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\n\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\n\n[/vc_column_text][/vc_column][/vc_row]", "The Midnight Calm", "", "inherit", "open", "open", "", "244-autosave-v1", "", "", "2015-01-12 14:20:40", "2015-01-12 14:20:40", "", "244", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/244-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1156", "1", "2015-01-12 14:23:25", "2015-01-12 14:23:25", "", "Portfolio10", "", "inherit", "open", "open", "", "portfolio10", "", "", "2015-01-12 14:23:25", "2015-01-12 14:23:25", "", "244", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1157", "1", "2015-01-12 14:23:27", "2015-01-12 14:23:27", "", "Portfolio11", "", "inherit", "open", "open", "", "portfolio11", "", "", "2015-01-12 14:23:27", "2015-01-12 14:23:27", "", "244", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1164", "1", "2015-06-29 08:53:54", "2015-06-29 08:53:54", "[vc_row][vc_column][vc_column_text]<strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</strong>\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?\n\nSed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.[/vc_column_text][/vc_column][/vc_row]", "Stationery", "", "inherit", "open", "open", "", "245-autosave-v1", "", "", "2015-06-29 08:53:54", "2015-06-29 08:53:54", "", "245", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/245-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1176", "1", "2015-01-12 14:46:28", "2015-01-12 14:46:28", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\n\nPellentesque eget nisl nec dolor sollicitudin pulvinar non a nisl. Morbi eget laoreet erat, in tincidunt neque. Morbi luctus hendrerit sagittis. Praesent vehicula eros tortor, ac ultricies metus cursus vitae. Nullam felis enim, volutpat sed tristique id, consectetur eget purus. In porta augue a magna tristique eleifend. Aenean imperdiet rhoncus eros, ut imperdiet sapien suscipit sed. Curabitur non euismod sem. Fusce ut placerat turpis. Nulla facilisi. Aliquam erat volutpat. Vivamus rhoncus id nibh at iaculis. Suspendisse sodales efficitur fringilla. Phasellus nec justo tincidunt, fermentum neque vel, maximus diam. Sed et pretium purus. Vestibulum non nulla sit amet elit commodo varius.[/vc_column_text][/vc_column][/vc_row]", "Lovely Mountain View", "", "inherit", "open", "open", "", "1095-autosave-v1", "", "", "2015-01-12 14:46:28", "2015-01-12 14:46:28", "", "1095", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1095-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1191", "1", "2015-01-12 15:01:26", "2015-01-12 15:01:26", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Pellentesque nisl est, suscipit eu fermentum eget, condimentum non nibh. Quisque a vulputate turpis. Vivamus posuere magna sem, in porta orci facilisis sed. Sed et dolor ac nibh dictum condimentum. Cras libero nisl, dapibus sit amet sollicitudin nec, pellentesque eu odio. Nam consequat volutpat lectus, sed suscipit risus gravida nec. Proin vel auctor nibh. Nulla at fringilla justo. Aliquam blandit vestibulum risus id finibus. Curabitur vel auctor velit, vel condimentum diam. Quisque auctor porttitor velit vitae tempor. Integer sed mattis est. Curabitur euismod libero a risus tempor, sed blandit ex eleifend. Duis ultricies vel turpis a aliquam. Integer metus massa, luctus nec finibus eu, tincidunt et dui. Nam laoreet pulvinar nulla, facilisis tincidunt felis aliquet non. Sed eget leo neque. Sed vel erat tempor, tincidunt ante non, eleifend augue.", "Foxy", "", "inherit", "open", "open", "", "1097-autosave-v1", "", "", "2015-01-12 15:01:26", "2015-01-12 15:01:26", "", "1097", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1097-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1195", "1", "2015-01-12 15:21:52", "2015-01-12 15:21:52", "", "Portfolio16", "", "inherit", "open", "open", "", "portfolio16", "", "", "2015-01-12 15:21:52", "2015-01-12 15:21:52", "", "1102", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio16.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1226", "1", "2015-01-12 16:02:27", "2015-01-12 16:02:27", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit=\"3\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-group\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY COMPANIES\" heading_color=\"#888888\" digit=\"345\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-heart\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Amendos", "", "publish", "open", "open", "", "aerial-views", "", "", "2015-02-04 08:39:11", "2015-02-04 08:39:11", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1226", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1227", "1", "2015-01-12 16:02:00", "2015-01-12 16:02:00", "", "Portfolio21", "", "inherit", "open", "open", "", "portfolio21", "", "", "2015-01-12 16:02:00", "2015-01-12 16:02:00", "", "1226", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio21.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1228", "1", "2015-01-12 16:07:16", "2015-01-12 16:07:16", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\nPellentesque eget nisl nec dolor sollicitudin pulvinar non a nisl. Morbi eget laoreet erat, in tincidunt neque. Morbi luctus hendrerit sagittis. Praesent vehicula eros tortor, ac ultricies metus cursus vitae. Nullam felis enim, volutpat sed tristique id, consectetur eget purus. In porta augue a magna tristique eleifend. Aenean imperdiet rhoncus eros, ut imperdiet sapien suscipit sed. Curabitur non euismod sem. Fusce ut placerat turpis. Nulla facilisi. Aliquam erat volutpat. Vivamus rhoncus id nibh at iaculis. Suspendisse sodales efficitur fringilla. Phasellus nec justo tincidunt, fermentum neque vel, maximus diam. Sed et pretium purus. Vestibulum non nulla sit amet elit commodo varius.\r\n", "Codecorar", "", "publish", "open", "open", "", "1228-2", "", "", "2015-02-04 08:42:14", "2015-02-04 08:42:14", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1228", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1230", "1", "2015-01-12 16:07:04", "2015-01-12 16:07:04", "", "Portfolio22", "", "inherit", "open", "open", "", "portfolio22", "", "", "2015-01-12 16:07:04", "2015-01-12 16:07:04", "", "1228", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio22.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1232", "1", "2015-01-12 16:14:27", "2015-01-12 16:14:27", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit=\"3\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-group\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY COMPANIES\" heading_color=\"#888888\" digit=\"345\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-heart\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Bold Wine", "", "publish", "open", "open", "", "make-a-wish", "", "", "2015-02-04 09:10:23", "2015-02-04 09:10:23", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=portfolio&#038;p=1232", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("1233", "1", "2015-01-12 16:11:09", "2015-01-12 16:11:09", "", "Portfolio23", "", "inherit", "open", "open", "", "portfolio23", "", "", "2015-01-12 16:11:09", "2015-01-12 16:11:09", "", "1232", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Portfolio23.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1282", "1", "2015-01-13 08:37:35", "2015-01-13 08:37:35", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "BLOG POST TITLE", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2015-01-13 08:37:35", "2015-01-13 08:37:35", "", "396", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/396-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16803", "1", "2015-07-17 10:19:30", "2015-07-17 10:19:30", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Sad Trees", "", "inherit", "open", "open", "", "385-revision-v1", "", "", "2015-07-17 10:19:30", "2015-07-17 10:19:30", "", "385", "http://localhost/mdeal2/?p=16803", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16804", "1", "2015-07-17 10:20:15", "2015-07-17 10:20:15", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;", "Autumn Tree", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2015-07-17 10:20:15", "2015-07-17 10:20:15", "", "396", "http://localhost/mdeal2/?p=16804", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16805", "1", "2015-07-17 10:20:50", "2015-07-17 10:20:50", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Choppy Sea", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2015-07-17 10:20:50", "2015-07-17 10:20:50", "", "391", "http://localhost/mdeal2/?p=16805", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1524", "1", "2015-01-14 11:52:19", "2015-01-14 11:52:19", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "AUTUMN TREE", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2015-01-14 11:52:19", "2015-01-14 11:52:19", "", "396", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/396-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1309", "1", "2015-01-13 10:08:35", "2015-01-13 10:08:35", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "LEOPARDS NEVER CHANGE SPOTS", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2015-01-13 10:08:35", "2015-01-13 10:08:35", "", "396", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/396-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1312", "1", "2015-01-13 10:16:55", "2015-01-13 10:16:55", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "BLOG POST TITLE", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2015-01-13 10:16:55", "2015-01-13 10:16:55", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1314", "1", "2015-01-13 10:18:34", "2015-01-13 10:18:34", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "WORKSTATION READY", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2015-01-13 10:18:34", "2015-01-13 10:18:34", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1315", "1", "2015-01-14 11:38:59", "2015-01-14 11:38:59", "No matter what project you have in mind, our creative team start at the begining of\nyour journey, then develop your idea into an amazing piece of reality", "VERY CHILLY MOUNTAIN", "", "inherit", "open", "open", "", "391-autosave-v1", "", "", "2015-01-14 11:38:59", "2015-01-14 11:38:59", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1317", "1", "2015-01-13 10:33:11", "2015-01-13 10:33:11", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2015-01-13 10:33:11", "2015-01-13 10:33:11", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1318", "1", "2015-01-13 10:33:56", "2015-01-13 10:33:56", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "VERY BERRY", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2015-01-13 10:33:56", "2015-01-13 10:33:56", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1322", "1", "2015-01-13 10:49:31", "2015-01-13 10:49:31", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "PURPLE FLOWERS", "", "inherit", "open", "open", "", "385-revision-v1", "", "", "2015-01-13 10:49:31", "2015-01-13 10:49:31", "", "385", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/385-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1323", "1", "2015-01-13 11:02:40", "2015-01-13 11:02:40", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.\r\n<blockquote>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</blockquote>\r\n<ul>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul>\r\n<ol>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol>\r\nProin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.\r\n\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\nVestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.\r\n\r\nEtiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.\r\n\r\nNulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.", "Graphic designer", "", "publish", "open", "open", "", "bull-in-a-china-shop", "", "", "2016-09-12 03:04:32", "2016-09-12 03:04:32", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=1323", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1325", "1", "2015-01-13 11:02:40", "2015-01-13 11:02:40", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi accumsan sapien lorem, in dictum eros interdum sed. Fusce auctor vitae velit quis tincidunt. Praesent ut ultrices eros. Vestibulum accumsan ante odio, fringilla eleifend mi tristique vitae. Vestibulum consectetur tempor cursus. Quisque suscipit purus nec molestie viverra. Aliquam in lorem id magna tristique mattis. Etiam luctus pulvinar rhoncus. Fusce elementum ante ac augue facilisis interdum. Sed tortor mauris, mollis sed iaculis sit amet, ultricies sit amet felis. Duis at justo ac lacus rutrum imperdiet sed sed augue. Nulla eget mi ultrices, scelerisque turpis fermentum, malesuada velit.\r\n\r\nUt lobortis nisl ac felis ullamcorper, in congue nisl congue. In hac habitasse platea dictumst. Mauris dignissim justo diam, in feugiat mauris bibendum quis. Donec et ante odio. Nulla arcu urna, placerat a aliquet vel, placerat non massa. Nullam tempor in elit semper placerat. Proin volutpat augue mattis augue maximus, vitae tincidunt odio viverra. Vestibulum euismod felis ac ultricies consectetur. Curabitur fermentum ornare metus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque eget placerat neque. Integer a mi lorem. Sed lorem mauris, condimentum id eros ut, finibus pulvinar eros. Donec eleifend elementum feugiat. Curabitur nec eros elit.", "BULL IN A CHINA SHOP", "", "inherit", "open", "open", "", "1323-revision-v1", "", "", "2015-01-13 11:02:40", "2015-01-13 11:02:40", "", "1323", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1331", "1", "2015-01-13 11:26:06", "2015-01-13 11:26:06", "", "Laptop", "", "inherit", "open", "open", "", "laptop-3", "", "", "2015-01-13 11:26:06", "2015-01-13 11:26:06", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Laptop2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1332", "1", "2015-01-13 11:30:21", "2015-01-13 11:30:21", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.\r\n<blockquote>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</blockquote>\r\n<ul>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul>\r\n<ol>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol>\r\nProin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.\r\n\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\nVestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.\r\n\r\nEtiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.\r\n\r\nNulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.", "Idea for project", "", "publish", "open", "open", "", "deer-in-the-woods", "", "", "2016-09-12 02:49:31", "2016-09-12 02:49:31", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=1332", "0", "post", "", "2");
INSERT INTO `wp_posts` VALUES("1333", "1", "2015-01-13 11:30:17", "2015-01-13 11:30:17", "", "Deer", "", "inherit", "open", "open", "", "deer", "", "", "2015-01-13 11:30:17", "2015-01-13 11:30:17", "", "1332", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/Deer.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1334", "1", "2015-01-13 11:30:21", "2015-01-13 11:30:21", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi accumsan sapien lorem, in dictum eros interdum sed. Fusce auctor vitae velit quis tincidunt. Praesent ut ultrices eros. Vestibulum accumsan ante odio, fringilla eleifend mi tristique vitae. Vestibulum consectetur tempor cursus. Quisque suscipit purus nec molestie viverra. Aliquam in lorem id magna tristique mattis. Etiam luctus pulvinar rhoncus. Fusce elementum ante ac augue facilisis interdum. Sed tortor mauris, mollis sed iaculis sit amet, ultricies sit amet felis. Duis at justo ac lacus rutrum imperdiet sed sed augue. Nulla eget mi ultrices, scelerisque turpis fermentum, malesuada velit.\r\n\r\nUt lobortis nisl ac felis ullamcorper, in congue nisl congue. In hac habitasse platea dictumst. Mauris dignissim justo diam, in feugiat mauris bibendum quis. Donec et ante odio. Nulla arcu urna, placerat a aliquet vel, placerat non massa. Nullam tempor in elit semper placerat. Proin volutpat augue mattis augue maximus, vitae tincidunt odio viverra. Vestibulum euismod felis ac ultricies consectetur. Curabitur fermentum ornare metus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque eget placerat neque. Integer a mi lorem. Sed lorem mauris, condimentum id eros ut, finibus pulvinar eros. Donec eleifend elementum feugiat. Curabitur nec eros elit.", "Deer in The Woods", "", "inherit", "open", "open", "", "1332-revision-v1", "", "", "2015-01-13 11:30:21", "2015-01-13 11:30:21", "", "1332", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1332-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1335", "1", "2015-01-13 11:30:43", "2015-01-13 11:30:43", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi accumsan sapien lorem, in dictum eros interdum sed. Fusce auctor vitae velit quis tincidunt. Praesent ut ultrices eros. Vestibulum accumsan ante odio, fringilla eleifend mi tristique vitae. Vestibulum consectetur tempor cursus. Quisque suscipit purus nec molestie viverra. Aliquam in lorem id magna tristique mattis. Etiam luctus pulvinar rhoncus. Fusce elementum ante ac augue facilisis interdum. Sed tortor mauris, mollis sed iaculis sit amet, ultricies sit amet felis. Duis at justo ac lacus rutrum imperdiet sed sed augue. Nulla eget mi ultrices, scelerisque turpis fermentum, malesuada velit.\r\n\r\nUt lobortis nisl ac felis ullamcorper, in congue nisl congue. In hac habitasse platea dictumst. Mauris dignissim justo diam, in feugiat mauris bibendum quis. Donec et ante odio. Nulla arcu urna, placerat a aliquet vel, placerat non massa. Nullam tempor in elit semper placerat. Proin volutpat augue mattis augue maximus, vitae tincidunt odio viverra. Vestibulum euismod felis ac ultricies consectetur. Curabitur fermentum ornare metus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque eget placerat neque. Integer a mi lorem. Sed lorem mauris, condimentum id eros ut, finibus pulvinar eros. Donec eleifend elementum feugiat. Curabitur nec eros elit.", "DEER IN THE WOODS", "", "inherit", "open", "open", "", "1332-revision-v1", "", "", "2015-01-13 11:30:43", "2015-01-13 11:30:43", "", "1332", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1332-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1336", "1", "2015-01-13 11:46:03", "2015-01-13 11:46:03", "", "country-train", "", "inherit", "open", "open", "", "country-train", "", "", "2015-01-13 11:46:03", "2015-01-13 11:46:03", "", "662", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/country-train.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1339", "1", "2015-01-13 11:49:10", "2015-01-13 11:49:10", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "ON THE TRACKS", "", "inherit", "open", "open", "", "662-revision-v1", "", "", "2015-01-13 11:49:10", "2015-01-13 11:49:10", "", "662", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/662-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1340", "1", "2015-01-13 11:50:05", "2015-01-13 11:50:05", "", "Portfolio5", "", "inherit", "open", "open", "", "portfolio5-2", "", "", "2015-01-13 11:50:05", "2015-01-13 11:50:05", "", "635", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Portfolio51.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1342", "1", "2015-01-13 11:51:32", "2015-01-13 11:51:32", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "GRAND CANYON", "", "inherit", "open", "open", "", "635-revision-v1", "", "", "2015-01-13 11:51:32", "2015-01-13 11:51:32", "", "635", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/635-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1362", "1", "2015-01-13 12:27:05", "2015-01-13 12:27:05", "", "LittleBoatTown", "", "inherit", "open", "open", "", "littleboattown", "", "", "2015-01-13 12:27:05", "2015-01-13 12:27:05", "", "625", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/LittleBoatTown.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1363", "1", "2015-01-13 12:27:11", "2015-01-13 12:27:11", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "LITTLE BOAT TOWN", "", "inherit", "open", "open", "", "625-autosave-v1", "", "", "2015-01-13 12:27:11", "2015-01-13 12:27:11", "", "625", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/625-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1466", "1", "2015-01-14 01:53:41", "2015-01-14 01:53:41", "<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\r\n		[text* name placeholder \"Name *\"]\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\r\n		[email* email  placeholder \"E-mail *\"]\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-12 col-md-4 col-lg-4\">\r\n		[text* subject placeholder \"Subject\"]\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n		[textarea* message placeholder \"Message *\"]\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n      <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12\">\r\n             [submit class:btn class:btn-default-alt class:size-default \"Submit\"]\r\n      </div>\r\n</div>\n[your-subject]\n[your-name] <wordpress@demo.cmssuperheroes.com/Wordpress>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\nadmin@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP Spectrum <wordpress@demo.cmssuperheroes.com/Wordpress>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP Spectrum (http://demo.cmssuperheroes.com/Wordpress/wp-spectrum)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill the required field.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nThis input is too long.\nThis input is too short.", "Contact Us v1", "", "publish", "open", "open", "", "contact-us-2", "", "", "2015-07-06 01:52:41", "2015-07-06 01:52:41", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=wpcf7_contact_form&#038;p=1466", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("1482", "1", "2015-01-14 02:54:31", "2015-01-14 02:54:31", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17772\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact", "", "publish", "open", "open", "", "contact-style-2", "", "", "2016-09-14 07:22:57", "2016-09-14 07:22:57", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?page_id=1482", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17521", "1", "2015-12-10 23:48:44", "2015-12-10 23:48:44", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-12-10 23:48:44", "2015-12-10 23:48:44", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1485", "1", "2015-01-14 03:01:27", "2015-01-14 03:01:27", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\"]Street Address Suburb State Zip Code Country [/cshero-fancy-box][vc_empty_space height=\"16px\"][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:01:27", "2015-01-14 03:01:27", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1483", "1", "2015-01-14 02:54:31", "2015-01-14 02:54:31", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\"ADDRESS \" title_color=\"#222222\" icon_title=\" fa-map-marker\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]97 East 15th Street, Suite 57, New York, NY 5730[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\" PHONE NUMBER \" title_color=\"#222222\" icon_title=\" fa-phone\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]Tel: +44 (0) 1254 0000 000\r\nFax: +44 (0) 1254 0000 001[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\"EMAIL \" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]info@yourdomain.com hello@yourdomain.com [/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 02:54:31", "2015-01-14 02:54:31", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1486", "1", "2015-01-14 03:02:51", "2015-01-14 03:02:51", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:02:51", "2015-01-14 03:02:51", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1499", "1", "2015-01-14 03:27:49", "2015-01-14 03:27:49", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\"ADDRESS \" title_color=\"#222222\" icon_title=\" fa-map-marker\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]97 East 15th Street, Suite 57, New York, NY 5730[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\" PHONE NUMBER \" title_color=\"#222222\" icon_title=\" fa-phone\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]Tel: +44 (0) 1254 0000 000\r\nFax: +44 (0) 1254 0000 001[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\"EMAIL \" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]info@yourdomain.com hello@yourdomain.com [/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1466\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:27:49", "2015-01-14 03:27:49", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1498", "1", "2015-01-14 03:25:15", "2015-01-14 03:25:15", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:25:15", "2015-01-14 03:25:15", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1500", "1", "2015-01-14 03:28:29", "2015-01-14 03:28:29", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\"ADDRESS \" title_color=\"#222222\" icon_title=\" fa-map-marker\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]97 East 15th Street, Suite 57, New York, NY 5730[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\" PHONE NUMBER \" title_color=\"#222222\" icon_title=\" fa-phone\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]Tel: +44 (0) 1254 0000 000\r\nFax: +44 (0) 1254 0000 001[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title=\"EMAIL \" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"36px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#ec008c\" border_color=\"#222222\" border_color_hover=\"#ec008c\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\"]info@yourdomain.com hello@yourdomain.com [/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:28:29", "2015-01-14 03:28:29", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1487", "1", "2015-01-14 03:07:47", "2015-01-14 03:07:47", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:07:47", "2015-01-14 03:07:47", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1489", "1", "2015-01-14 03:11:11", "2015-01-14 03:11:11", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:11:11", "2015-01-14 03:11:11", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1495", "1", "2015-01-14 03:19:41", "2015-01-14 03:19:41", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:19:41", "2015-01-14 03:19:41", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1497", "1", "2015-01-14 03:22:34", "2015-01-14 03:22:34", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:22:34", "2015-01-14 03:22:34", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1496", "1", "2015-01-14 03:20:24", "2015-01-14 03:20:24", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:20:24", "2015-01-14 03:20:24", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1488", "1", "2015-01-14 03:09:53", "2015-01-14 03:09:53", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-mobile-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-desktop\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-mobile-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:09:53", "2015-01-14 03:09:53", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1491", "1", "2015-01-14 03:14:27", "2015-01-14 03:14:27", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:14:27", "2015-01-14 03:14:27", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1492", "1", "2015-01-14 03:15:49", "2015-01-14 03:15:49", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:15:49", "2015-01-14 03:15:49", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1490", "1", "2015-01-14 03:12:12", "2015-01-14 03:12:12", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-mobile-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-desktop\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-mobile-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:12:12", "2015-01-14 03:12:12", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1494", "1", "2015-01-14 03:18:23", "2015-01-14 03:18:23", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:18:23", "2015-01-14 03:18:23", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1493", "1", "2015-01-14 03:16:50", "2015-01-14 03:16:50", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-mobile-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-desktop\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-mobile-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-phone\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"][vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#222222\" icon_title=\"fa-home\" icon_size=\"30px\" icon_color=\"#222222\" icon_color_hover=\"#222222\" icon_bg_color=\"#ffffff\" title_margin=\"0 0 10px\" icon_width=\"65px\" icon_heigth=\"65px\"]Street Address Suburb State Zip Code Country[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row][/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-01-14 03:16:50", "2015-01-14 03:16:50", "", "1482", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1514", "1", "2015-01-14 08:27:39", "2015-01-14 08:27:39", " ", "", "", "publish", "open", "open", "", "1514", "", "", "2015-01-22 09:39:08", "2015-01-22 09:39:08", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=1514", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("1519", "1", "2015-01-14 11:38:48", "2015-01-14 11:38:48", "", "Mountain", "", "inherit", "open", "open", "", "mountain", "", "", "2015-01-14 11:38:48", "2015-01-14 11:38:48", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Mountain.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1522", "1", "2015-01-14 11:49:31", "2015-01-14 11:49:31", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "CHOPPY SEA", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2015-01-14 11:49:31", "2015-01-14 11:49:31", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1520", "1", "2015-01-14 11:39:13", "2015-01-14 11:39:13", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "VERY CHILLY MOUNTAIN", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2015-01-14 11:39:13", "2015-01-14 11:39:13", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1521", "1", "2015-01-14 11:49:27", "2015-01-14 11:49:27", "", "Sea", "", "inherit", "open", "open", "", "sea", "", "", "2015-01-14 11:49:27", "2015-01-14 11:49:27", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Sea.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1523", "1", "2015-01-14 11:52:09", "2015-01-14 11:52:09", "", "Tree", "", "inherit", "open", "open", "", "tree", "", "", "2015-01-14 11:52:09", "2015-01-14 11:52:09", "", "396", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Tree.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1525", "1", "2015-01-14 11:55:18", "2015-01-14 11:55:18", "", "SadTrees", "", "inherit", "open", "open", "", "sadtrees", "", "", "2015-01-14 11:55:18", "2015-01-14 11:55:18", "", "385", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/SadTrees.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1526", "1", "2015-01-14 11:55:23", "2015-01-14 11:55:23", "No matter what project you have in mind, our creative team start at the begining of\r\nyour journey, then develop your idea into an amazing piece of reality", "SAD TREES", "", "inherit", "open", "open", "", "385-revision-v1", "", "", "2015-01-14 11:55:23", "2015-01-14 11:55:23", "", "385", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/385-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17309", "1", "2015-11-26 11:26:38", "2015-11-26 11:26:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537197122{padding-bottom: 25px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:26:38", "2015-11-26 11:26:38", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17308", "1", "2015-11-26 11:22:26", "2015-11-26 11:22:26", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:22:26", "2015-11-26 11:22:26", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1542", "1", "2015-01-14 12:52:58", "2015-01-14 12:52:58", "", "Newperspective", "", "inherit", "open", "open", "", "newperspective", "", "", "2015-01-14 12:52:58", "2015-01-14 12:52:58", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/Newperspective.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("1547", "1", "2015-01-14 13:09:36", "2015-01-14 13:09:36", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "CHOPPY SEA", "", "inherit", "open", "open", "", "391-revision-v1", "", "", "2015-01-14 13:09:36", "2015-01-14 13:09:36", "", "391", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/391-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1563", "1", "2015-01-14 13:50:10", "2015-01-14 13:50:10", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n", "SAD TREES", "", "inherit", "open", "open", "", "385-revision-v1", "", "", "2015-01-14 13:50:10", "2015-01-14 13:50:10", "", "385", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/385-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1566", "1", "2015-01-14 13:54:55", "2015-01-14 13:54:55", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n", "WORKSTATION READY", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2015-01-14 13:54:55", "2015-01-14 13:54:55", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1567", "1", "2015-01-14 13:55:54", "2015-01-14 13:55:54", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<a href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\"><img src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\" alt=\"waterhouse-lg\" width=\"1640\" height=\"1475\" class=\"alignnone size-full wp-image-1255\" /></a>", "WORKSTATION READY", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2015-01-14 13:55:54", "2015-01-14 13:55:54", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1568", "1", "2015-01-14 14:00:17", "2015-01-14 14:00:17", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\"><img src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\" alt=\"waterhouse-lg\" width=\"1640\" height=\"1475\" class=\"alignnone size-full wp-image-1255\" /></a>", "WORKSTATION READY", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2015-01-14 14:00:17", "2015-01-14 14:00:17", "", "394", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1571", "1", "2015-01-14 14:03:30", "2015-01-14 14:03:30", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n", "AUTUMN TREE", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2015-01-14 14:03:30", "2015-01-14 14:03:30", "", "396", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/396-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1575", "1", "2015-01-14 14:07:53", "2015-01-14 14:07:53", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi accumsan sapien lorem, in dictum eros interdum sed. Fusce auctor vitae velit quis tincidunt. Praesent ut ultrices eros. Vestibulum accumsan ante odio, fringilla eleifend mi tristique vitae. Vestibulum consectetur tempor cursus. Quisque suscipit purus nec molestie viverra. Aliquam in lorem id magna tristique mattis. Etiam luctus pulvinar rhoncus. Fusce elementum ante ac augue facilisis interdum. Sed tortor mauris, mollis sed iaculis sit amet, ultricies sit amet felis. Duis at justo ac lacus rutrum imperdiet sed sed augue. Nulla eget mi ultrices, scelerisque turpis fermentum, malesuada velit.\r\n\r\nUt lobortis nisl ac felis ullamcorper, in congue nisl congue. In hac habitasse platea dictumst. Mauris dignissim justo diam, in feugiat mauris bibendum quis. Donec et ante odio. Nulla arcu urna, placerat a aliquet vel, placerat non massa. Nullam tempor in elit semper placerat. Proin volutpat augue mattis augue maximus, vitae tincidunt odio viverra. Vestibulum euismod felis ac ultricies consectetur. Curabitur fermentum ornare metus quis interdum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Pellentesque eget placerat neque. Integer a mi lorem. Sed lorem mauris, condimentum id eros ut, finibus pulvinar eros. Donec eleifend elementum feugiat. Curabitur nec eros elit.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\n\r\n\r\n&nbsp;\r\n", "BULL IN A CHINA SHOP", "", "inherit", "open", "open", "", "1323-revision-v1", "", "", "2015-01-14 14:07:53", "2015-01-14 14:07:53", "", "1323", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1644", "1", "2015-01-14 16:54:42", "2015-01-14 16:54:42", "[vc_row][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\r\n<h4>RIGHT SIDEBAR</h4>\r\n<h1>EXAMPLE PAGE</h1>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.\r\n<blockquote>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan</blockquote>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Right Sidebar", "", "publish", "open", "open", "", "right-sidebar", "", "", "2015-06-11 08:43:53", "2015-06-11 08:43:53", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?page_id=1644", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("1645", "1", "2015-01-14 16:54:18", "2015-01-14 16:54:18", "[vc_row][vc_column width=\"1/1\"][vc_column_text]\r\n<h4>RIGHT SIDEBAR</h4>\r\n<h1>EXAMPLE PAGE</h1>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.\r\n<blockquote>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan</blockquote>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.[/vc_column_text][/vc_column][/vc_row]", "Right Sidebar", "", "inherit", "open", "open", "", "1644-revision-v1", "", "", "2015-01-14 16:54:18", "2015-01-14 16:54:18", "", "1644", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1644-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1650", "1", "2015-01-14 17:17:27", "2015-01-14 17:17:27", "", "waterhousenew2", "", "inherit", "open", "open", "", "waterhousenew2", "", "", "2015-01-14 17:17:27", "2015-01-14 17:17:27", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhousenew2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1667", "1", "2015-01-15 01:56:58", "2015-01-15 01:56:58", "[vc_row][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\r\n<h4>RIGHT SIDEBAR</h4>\r\n<h1>EXAMPLE PAGE</h1>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.\r\n<blockquote>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan</blockquote>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.[/vc_column_text][/vc_column][/vc_row]", "Right Sidebar", "", "inherit", "open", "open", "", "1644-revision-v1", "", "", "2015-01-15 01:56:58", "2015-01-15 01:56:58", "", "1644", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1644-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1761", "1", "2015-02-04 08:33:22", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-02-04 08:33:22", "0000-00-00 00:00:00", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=1761", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("1679", "1", "2015-01-20 17:14:10", "2015-01-20 17:14:10", "", "citybg-1new2", "", "inherit", "open", "open", "", "citybg-1new2", "", "", "2015-01-20 17:14:10", "2015-01-20 17:14:10", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/citybg-1new2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1849", "1", "2015-02-04 10:44:16", "2015-02-04 10:44:16", "", "idea1bg", "", "inherit", "open", "open", "", "idea1bg", "", "", "2015-02-04 10:44:16", "2015-02-04 10:44:16", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/idea1bg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("16801", "1", "2015-07-17 10:18:25", "2015-07-17 10:18:25", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\" alt=\"waterhouse-lg\" width=\"1640\" height=\"1475\" /></a>", "Workstation Ready", "", "inherit", "open", "open", "", "394-revision-v1", "", "", "2015-07-17 10:18:25", "2015-07-17 10:18:25", "", "394", "http://localhost/mdeal2/?p=16801", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16799", "1", "2015-07-17 09:51:36", "2015-07-17 09:51:36", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1437126695593{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\" exo_same_height=\"no\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" exo_same_height=\"no\" el_class=\"font-size-25\" css=\".vc_custom_1434362037076{padding-top: 40px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\" font_color=\"#13151c\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Mortgages\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3295\" link_show_more=\"#\" imgage_border_bottom_color=\"#00accd\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Financial Planning\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3296\" link_show_more=\"#\" imgage_border_bottom_color=\"#9cde7a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Pensions\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3297\" link_show_more=\"#\" imgage_border_bottom_color=\"#ffdd45\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Investments\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3298\" link_show_more=\"#\" imgage_border_bottom_color=\"#f16246\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-07-17 09:51:36", "2015-07-17 09:51:36", "", "3201", "http://localhost/mdeal2/?p=16799", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16800", "1", "2015-07-17 09:52:19", "2015-07-17 09:52:19", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1437126739055{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\" exo_same_height=\"no\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" type=\"ww-custom\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" exo_same_height=\"no\" el_class=\"font-size-25\" css=\".vc_custom_1434362037076{padding-top: 40px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\" font_color=\"#13151c\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Mortgages\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3295\" link_show_more=\"#\" imgage_border_bottom_color=\"#00accd\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Financial Planning\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3296\" link_show_more=\"#\" imgage_border_bottom_color=\"#9cde7a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Pensions\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3297\" link_show_more=\"#\" imgage_border_bottom_color=\"#ffdd45\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Investments\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3298\" link_show_more=\"#\" imgage_border_bottom_color=\"#f16246\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-07-17 09:52:19", "2015-07-17 09:52:19", "", "3201", "http://localhost/mdeal2/?p=16800", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1819", "1", "2015-02-04 09:10:09", "2015-02-04 09:10:09", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit=\"3\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-group\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY COMPANIES\" heading_color=\"#888888\" digit=\"345\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-heart\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Bold Wine", "", "inherit", "open", "open", "", "1232-autosave-v1", "", "", "2015-02-04 09:10:09", "2015-02-04 09:10:09", "", "1232", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/1232-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("1843", "1", "2015-02-04 09:39:37", "2015-02-04 09:39:37", "", "08_used", "", "inherit", "open", "open", "", "08_used", "", "", "2015-02-04 09:39:37", "2015-02-04 09:39:37", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/08_used.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("1845", "1", "2015-02-04 10:03:51", "2015-02-04 10:03:51", "", "macmockup", "", "inherit", "open", "open", "", "macmockup", "", "", "2015-02-04 10:03:51", "2015-02-04 10:03:51", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/macmockup.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("16506", "1", "2015-07-14 07:54:19", "2015-07-14 07:54:19", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327754114{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search-plus\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327765869{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327780727{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327793408{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-adjust\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-07-14 07:54:19", "2015-07-14 07:54:19", "", "14498", "http://localhost/mdeal2/?p=16506", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2061", "1", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "About", "", "publish", "open", "open", "", "about", "", "", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=2061", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("2062", "1", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "Ideas", "", "publish", "open", "open", "", "ideas", "", "", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=2062", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("2063", "1", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "Our Work", "", "publish", "open", "open", "", "our-work", "", "", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=2063", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("2064", "1", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "Skills", "", "publish", "open", "open", "", "skills", "", "", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=2064", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("2065", "1", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "Clients", "", "publish", "open", "open", "", "clients", "", "", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=2065", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("2066", "1", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "Blog", "", "publish", "open", "open", "", "blog-2", "", "", "2015-02-09 10:58:43", "2015-02-09 10:58:43", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?p=2066", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("2069", "1", "2015-02-09 12:38:16", "2015-02-09 12:38:16", "", "MasterSlide2", "", "inherit", "open", "open", "", "masterslide2-2", "", "", "2015-02-09 12:38:16", "2015-02-09 12:38:16", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/02/MasterSlide2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("2110", "1", "2015-02-09 14:04:37", "2015-02-09 14:04:37", "", "bg-slider4", "", "inherit", "open", "open", "", "bg-slider4-2", "", "", "2015-02-09 14:04:37", "2015-02-09 14:04:37", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/02/bg-slider4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("2112", "1", "2015-02-09 14:42:45", "2015-02-09 14:42:45", "", "freelancersoftbg", "", "inherit", "open", "open", "", "freelancersoftbg", "", "", "2015-02-09 14:42:45", "2015-02-09 14:42:45", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/02/freelancersoftbg.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("2118", "1", "2015-02-09 14:44:15", "2015-02-09 14:44:15", "", "desktop", "", "inherit", "open", "open", "", "desktop", "", "", "2015-02-09 14:44:15", "2015-02-09 14:44:15", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/02/desktop.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("2138", "1", "2015-02-09 16:00:07", "2015-02-09 16:00:07", "", "download", "", "inherit", "open", "open", "", "download-2", "", "", "2015-02-09 16:00:07", "2015-02-09 16:00:07", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/download.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("2139", "1", "2015-02-09 16:00:10", "2015-02-09 16:00:10", "", "download-1", "", "inherit", "open", "open", "", "download-1-2", "", "", "2015-02-09 16:00:10", "2015-02-09 16:00:10", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2014/12/download-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("2149", "1", "2015-02-09 16:47:43", "2015-02-09 16:47:43", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Beautiful Examples", "", "inherit", "open", "open", "", "657-revision-v1", "", "", "2015-02-09 16:47:43", "2015-02-09 16:47:43", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2150", "1", "2015-02-09 16:48:22", "2015-02-09 16:48:22", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "GRAND CANYON", "", "inherit", "open", "open", "", "635-revision-v1", "", "", "2015-02-09 16:48:22", "2015-02-09 16:48:22", "", "635", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/635-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2153", "1", "2015-02-09 16:58:59", "2015-02-09 16:58:59", "<p>[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"22\" text_style=\"none\" icon=\" fa-clock-o\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"2\" text_style=\"none\" icon=\"fa-group\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" digit=\"3\" text_style=\"none\" icon=\"fa-heart\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY COMPANIES\" heading_color=\"#888888\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]</p>\n", "MOOVE", "", "inherit", "open", "open", "", "239-autosave-v1", "", "", "2015-02-09 16:58:59", "2015-02-09 16:58:59", "", "239", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/239-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2155", "1", "2015-02-09 17:21:34", "2015-02-09 17:21:34", "", "homeoffice1", "", "inherit", "open", "open", "", "homeoffice1", "", "", "2015-02-09 17:21:34", "2015-02-09 17:21:34", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/02/homeoffice1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("2219", "1", "2015-02-11 15:22:04", "2015-02-11 15:22:04", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "BEAUTIFUL EXAMPLES", "", "inherit", "open", "open", "", "657-revision-v1", "", "", "2015-02-11 15:22:04", "2015-02-11 15:22:04", "", "657", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/657-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17298", "1", "2015-11-26 10:45:11", "2015-11-26 10:45:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:45:11", "2015-11-26 10:45:11", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17297", "1", "2015-11-26 10:44:33", "2015-11-26 10:44:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:44:33", "2015-11-26 10:44:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17299", "1", "2015-11-26 10:46:54", "2015-11-26 10:46:54", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:46:54", "2015-11-26 10:46:54", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2391", "1", "2015-02-17 11:07:38", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-02-17 11:07:38", "0000-00-00 00:00:00", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?post_type=header&p=2391", "0", "header", "", "0");
INSERT INTO `wp_posts` VALUES("2488", "1", "2015-02-17 14:31:12", "2015-02-17 14:31:12", "", "office2", "", "inherit", "open", "open", "", "office2", "", "", "2015-02-17 14:31:12", "2015-02-17 14:31:12", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/office2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17572", "1", "2015-12-17 15:33:40", "2015-12-17 15:33:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:33:40", "2015-12-17 15:33:40", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2572", "1", "2015-02-18 12:03:03", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-02-18 12:03:03", "0000-00-00 00:00:00", "", "0", "http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/?page_id=2572", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17691", "1", "2016-01-04 15:36:32", "2016-01-04 15:36:32", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n\r\nAenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2016-01-04 15:36:32", "2016-01-04 15:36:32", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3389", "1", "2015-06-04 16:06:49", "2015-06-04 16:06:49", "", "corpslide2", "", "inherit", "open", "open", "", "corpslide2", "", "", "2015-06-04 16:06:49", "2015-06-04 16:06:49", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/corpslide2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("16753", "1", "2015-07-16 15:00:29", "2015-07-16 15:00:29", "", "aboutlight", "", "inherit", "open", "open", "", "aboutlight", "", "", "2015-07-16 15:00:29", "2015-07-16 15:00:29", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/aboutlight.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("16720", "1", "2015-07-16 13:14:36", "2015-07-16 13:14:36", "<div class=\"row\" style=\"margin-bottom: 0px;\">\r\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center\">\r\n[submit \"Submit\"]\r\n</div>\r\n</div>\n[your-subject]\n[your-name] <wordpress@192.168.1.110>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\nadmin@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP EXO Theme <wordpress@192.168.1.110>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Forms Hoshi", "", "publish", "open", "open", "", "forms-kozakura_copy", "", "", "2015-07-16 13:18:03", "2015-07-16 13:18:03", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&#038;p=16720", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("15844", "1", "2015-06-30 10:51:56", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-30 10:51:56", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?p=15844", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("17296", "1", "2015-11-26 10:43:45", "2015-11-26 10:43:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:43:45", "2015-11-26 10:43:45", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2967", "1", "2015-05-22 08:08:05", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-05-22 08:08:05", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?post_type=testimonial&p=2967", "0", "testimonial", "", "0");
INSERT INTO `wp_posts` VALUES("2977", "1", "2015-05-22 10:28:29", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-05-22 10:28:29", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=2977", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17517", "1", "2015-12-08 17:06:07", "2015-12-08 17:06:07", "", "TEXT WIDGET", "", "publish", "open", "closed", "", "menu-item", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17517", "14", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("3051", "1", "2015-05-27 08:47:22", "2015-05-27 08:47:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435328170526{margin-top: -80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\" exo_same_height=\"no\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705714414{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "Accordion", "", "publish", "open", "open", "", "accordion", "", "", "2015-11-05 02:10:01", "2015-11-05 02:10:01", "", "0", "http://localhost/mdeal2/?page_id=3051", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("3052", "1", "2015-05-27 08:47:22", "2015-05-27 08:47:22", "", "Accordion", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-05-27 08:47:22", "2015-05-27 08:47:22", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17295", "1", "2015-11-26 10:42:52", "2015-11-26 10:42:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:42:52", "2015-11-26 10:42:52", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3068", "1", "2015-05-27 10:48:11", "2015-05-27 10:48:11", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "Accordion", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-05-27 10:48:11", "2015-05-27 10:48:11", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3067", "1", "2015-05-27 10:46:43", "2015-05-27 10:46:43", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "Accordion", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-05-27 10:46:43", "2015-05-27 10:46:43", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3111", "1", "2015-05-28 02:59:35", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-05-28 02:59:35", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=3111", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("3114", "1", "2015-05-28 07:39:05", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-05-28 07:39:05", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=3114", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("3145", "1", "2015-05-29 08:06:49", "2015-05-29 08:06:49", "", "preview", "", "inherit", "open", "open", "", "preview-7", "", "", "2015-05-29 08:06:49", "2015-05-29 08:06:49", "", "245", "http://localhost/mdeal2/wp-content/uploads/2014/12/preview6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("3188", "1", "2015-06-19 09:23:16", "2015-06-19 09:23:16", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705714414{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\n\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-autosave-v1", "", "", "2015-06-19 09:23:16", "2015-06-19 09:23:16", "", "3051", "http://localhost/mdeal2/3051-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3189", "1", "2015-06-02 11:44:44", "2015-06-02 11:44:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245446685{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245456509{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "Accordion", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 11:44:44", "2015-06-02 11:44:44", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3192", "1", "2015-06-02 12:03:22", "2015-06-02 12:03:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245446685{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245456509{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:03:22", "2015-06-02 12:03:22", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3193", "1", "2015-06-02 12:04:09", "2015-06-02 12:04:09", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245446685{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245456509{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", ".accordion", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:04:09", "2015-06-02 12:04:09", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3194", "1", "2015-06-02 12:04:36", "2015-06-02 12:04:36", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245446685{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245456509{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:04:36", "2015-06-02 12:04:36", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3197", "1", "2015-06-02 12:09:06", "2015-06-02 12:09:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:09:06", "2015-06-02 12:09:06", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3195", "1", "2015-06-02 12:05:03", "2015-06-02 12:05:03", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246700582{margin-top: -80px !important;padding-top: 60px !important;padding-bottom: 60px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433245456509{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:05:03", "2015-06-02 12:05:03", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3196", "1", "2015-06-02 12:05:34", "2015-06-02 12:05:34", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246724503{margin-top: -80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut\r\nfugit natus error sit voluptatem accusantium.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:05:34", "2015-06-02 12:05:34", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3198", "1", "2015-06-02 12:17:22", "2015-06-02 12:17:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:17:22", "2015-06-02 12:17:22", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3199", "1", "2015-06-02 12:18:11", "2015-06-02 12:18:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"3\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:18:11", "2015-06-02 12:18:11", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3200", "1", "2015-06-02 12:18:26", "2015-06-02 12:18:26", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-02 12:18:26", "2015-06-02 12:18:26", "", "3051", "http://localhost/mdeal2/3051-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3201", "1", "2015-06-02 12:34:25", "2015-06-02 12:34:25", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1437126739055{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\" exo_same_height=\"no\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" type=\"ww-custom\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" exo_same_height=\"no\" el_class=\"font-size-25\" css=\".vc_custom_1434362037076{padding-top: 40px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\" font_color=\"#13151c\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Mortgages\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3295\" link_show_more=\"#\" imgage_border_bottom_color=\"#00accd\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Financial Planning\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3296\" link_show_more=\"#\" imgage_border_bottom_color=\"#9cde7a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Pensions\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3297\" link_show_more=\"#\" imgage_border_bottom_color=\"#ffdd45\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Investments\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3298\" link_show_more=\"#\" imgage_border_bottom_color=\"#f16246\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "publish", "open", "open", "", "fancy-icon-boxes", "", "", "2015-07-17 09:52:19", "2015-07-17 09:52:19", "", "0", "http://localhost/mdeal2/?page_id=3201", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("3203", "1", "2015-06-02 12:26:40", "2015-06-02 12:26:40", "[vc_row css=\".vc_custom_1433247948370{padding-top: 80px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" lax_layer2=\"3098\" lax_layer3=\"3097\" lax_layer4=\"3096\" lax_layer1=\"3099\" lax_layer5=\"3100\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\"][vc_row_inner css=\".vc_custom_1432578213286{padding-bottom: 32px !important;}\" same_height=\"\"][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(0,172,203,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(158,221,127,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(254,220,84,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_row_inner same_height=\"\" el_id=\"\"][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(236,100,81,0.8)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(145,107,150,0.8)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(243,120,0,0.79)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 12:26:40", "2015-06-02 12:26:40", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3202", "1", "2015-06-02 12:24:32", "2015-06-02 12:24:32", "[vc_row css=\".vc_custom_1432887484380{padding-top: 80px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" arrow_color=\"#13151c\" row_arrow=\"yes\" lax_layer2=\"3098\" lax_layer3=\"3097\" lax_layer4=\"3096\" lax_layer1=\"3099\" lax_layer5=\"3100\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">.systems</h2>\r\n<p style=\"text-align: center;\">Create and tell your companies story through all types of media with our successful solutions.\r\nWe can deliver successful solutions with professional project management.</p>\r\n[/vc_column_text][vc_empty_space height=\"50px\"][vc_row_inner css=\".vc_custom_1432578213286{padding-bottom: 32px !important;}\" same_height=\"\"][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(0,172,203,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(158,221,127,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(254,220,84,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_row_inner same_height=\"\" el_id=\"\"][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(236,100,81,0.8)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(145,107,150,0.8)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(243,120,0,0.79)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"57px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 12:24:32", "2015-06-02 12:24:32", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3205", "1", "2015-06-02 12:39:05", "2015-06-02 12:39:05", "[vc_row css=\".vc_custom_1433248742214{padding-top: 150px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" lax_layer2=\"3098\" lax_layer3=\"3097\" lax_layer4=\"3096\" lax_layer1=\"3099\" lax_layer5=\"3100\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\"][vc_row_inner css=\".vc_custom_1432578213286{padding-bottom: 32px !important;}\" same_height=\"\"][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(0,172,203,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(158,221,127,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\" box_bg_hover=\"rgba(254,220,84,0.8)\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_row_inner same_height=\"\" el_id=\"\"][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(236,100,81,0.8)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(145,107,150,0.8)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/3\" animation=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg_hover=\"rgba(243,120,0,0.79)\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 12:39:05", "2015-06-02 12:39:05", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3206", "1", "2015-06-02 13:01:29", "2015-06-02 13:01:29", "[vc_row css=\".vc_custom_1433249046045{padding-top: 150px !important;padding-bottom: 150px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"3099\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"3098\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"3097\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"3096\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"3100\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433248742214{padding-top: 150px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1431190806668{padding-top: 30px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:01:29", "2015-06-02 13:01:29", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3208", "1", "2015-06-02 13:11:20", "2015-06-02 13:11:20", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250522557{padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250338479{padding-top: 150px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1431190806668{padding-top: 30px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:11:20", "2015-06-02 13:11:20", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3209", "1", "2015-06-02 13:11:50", "2015-06-02 13:11:50", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250338479{padding-top: 150px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1431190806668{padding-top: 30px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:11:50", "2015-06-02 13:11:50", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3210", "1", "2015-06-02 13:12:29", "2015-06-02 13:12:29", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250338479{padding-top: 150px !important;padding-bottom: 150px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:12:29", "2015-06-02 13:12:29", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3211", "1", "2015-06-02 13:12:49", "2015-06-02 13:12:49", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:12:49", "2015-06-02 13:12:49", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3212", "1", "2015-06-02 13:19:50", "2015-06-02 13:19:50", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:19:50", "2015-06-02 13:19:50", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3213", "1", "2015-06-02 13:22:00", "2015-06-02 13:22:00", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:22:00", "2015-06-02 13:22:00", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3240", "1", "2015-06-30 08:38:38", "2015-06-30 08:38:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-autosave-v1", "", "", "2015-06-30 08:38:38", "2015-06-30 08:38:38", "", "3201", "http://localhost/mdeal2/3201-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3218", "1", "2015-06-02 13:52:59", "2015-06-02 13:52:59", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-02 13:52:59", "2015-06-02 13:52:59", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17294", "1", "2015-11-26 10:37:13", "2015-11-26 10:37:13", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:37:13", "2015-11-26 10:37:13", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3241", "1", "2015-06-03 03:32:19", "2015-06-03 03:32:19", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout3\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 03:32:19", "2015-06-03 03:32:19", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3242", "1", "2015-06-03 03:35:42", "2015-06-03 03:35:42", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 03:35:42", "2015-06-03 03:35:42", "", "3201", "http://localhost/mdeal2/3201-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14250", "1", "2015-06-11 08:43:53", "2015-06-11 08:43:53", "[vc_row][vc_column width=\"1/1\" column_style=\"title-sub\"][vc_column_text]\r\n<h4>RIGHT SIDEBAR</h4>\r\n<h1>EXAMPLE PAGE</h1>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.\r\n<blockquote>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan</blockquote>\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Right Sidebar", "", "inherit", "open", "open", "", "1644-revision-v1", "", "", "2015-06-11 08:43:53", "2015-06-11 08:43:53", "", "1644", "http://localhost/mdeal2/?p=14250", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3268", "1", "2015-06-03 10:58:13", "2015-06-03 10:58:13", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 10:58:13", "2015-06-03 10:58:13", "", "3201", "http://localhost/mdeal2/?p=3268", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3269", "1", "2015-06-03 11:00:03", "2015-06-03 11:00:03", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:00:03", "2015-06-03 11:00:03", "", "3201", "http://localhost/mdeal2/?p=3269", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3270", "1", "2015-06-03 11:09:34", "2015-06-03 11:09:34", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:09:34", "2015-06-03 11:09:34", "", "3201", "http://localhost/mdeal2/?p=3270", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3271", "1", "2015-06-03 11:11:37", "2015-06-03 11:11:37", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:11:37", "2015-06-03 11:11:37", "", "3201", "http://localhost/mdeal2/?p=3271", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3275", "1", "2015-06-03 11:18:25", "2015-06-03 11:18:25", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 18px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:18:25", "2015-06-03 11:18:25", "", "3201", "http://localhost/mdeal2/?p=3275", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3272", "1", "2015-06-03 11:14:20", "2015-06-03 11:14:20", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330022813{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h3 style=\"text-align: center;\"><span style=\"color: #ffffff;\">CHOOSE FROM OVER 1000 ICONS or YOUR OWN IMAGE ICONS</span></h3>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:14:20", "2015-06-03 11:14:20", "", "3201", "http://localhost/mdeal2/?p=3272", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3273", "1", "2015-06-03 11:15:09", "2015-06-03 11:15:09", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">CHOOSE FROM OVER 1000 ICONS or YOUR OWN IMAGE ICONS</span></h4>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:15:09", "2015-06-03 11:15:09", "", "3201", "http://localhost/mdeal2/?p=3273", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3274", "1", "2015-06-03 11:16:51", "2015-06-03 11:16:51", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN <span style=\"color: #00accb;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:16:51", "2015-06-03 11:16:51", "", "3201", "http://localhost/mdeal2/?p=3274", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3276", "1", "2015-06-03 11:18:53", "2015-06-03 11:18:53", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433250746602{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:18:53", "2015-06-03 11:18:53", "", "3201", "http://localhost/mdeal2/?p=3276", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3277", "1", "2015-06-03 11:19:36", "2015-06-03 11:19:36", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:19:36", "2015-06-03 11:19:36", "", "3201", "http://localhost/mdeal2/?p=3277", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3278", "1", "2015-06-03 11:20:22", "2015-06-03 11:20:22", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY<span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:20:22", "2015-06-03 11:20:22", "", "3201", "http://localhost/mdeal2/?p=3278", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3279", "1", "2015-06-03 11:21:05", "2015-06-03 11:21:05", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY<span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:21:05", "2015-06-03 11:21:05", "", "3201", "http://localhost/mdeal2/?p=3279", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3280", "1", "2015-06-03 11:22:00", "2015-06-03 11:22:00", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:22:00", "2015-06-03 11:22:00", "", "3201", "http://localhost/mdeal2/?p=3280", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3281", "1", "2015-06-03 11:22:30", "2015-06-03 11:22:30", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-03 11:22:30", "2015-06-03 11:22:30", "", "3201", "http://localhost/mdeal2/?p=3281", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3295", "1", "2015-06-04 02:09:47", "2015-06-04 02:09:47", "", "fx01", "", "inherit", "open", "open", "", "fx01", "", "", "2015-06-04 02:09:47", "2015-06-04 02:09:47", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/fx01.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("3296", "1", "2015-06-04 02:09:48", "2015-06-04 02:09:48", "", "fx02", "", "inherit", "open", "open", "", "fx02", "", "", "2015-06-04 02:09:48", "2015-06-04 02:09:48", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/fx02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("3297", "1", "2015-06-04 02:09:48", "2015-06-04 02:09:48", "", "fx03", "", "inherit", "open", "open", "", "fx03", "", "", "2015-06-04 02:09:48", "2015-06-04 02:09:48", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/fx03.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("3298", "1", "2015-06-04 02:09:49", "2015-06-04 02:09:49", "", "fx04", "", "inherit", "open", "open", "", "fx04", "", "", "2015-06-04 02:09:49", "2015-06-04 02:09:49", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/fx04.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17293", "1", "2015-11-26 10:36:51", "2015-11-26 10:36:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:36:51", "2015-11-26 10:36:51", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3342", "1", "2015-06-04 04:28:32", "2015-06-04 04:28:32", "Donec mattis felis sit amet viverra elementum. Nullam rutrum sit amet nisl eu rhoncus. Duis tristique dolor magna, vitae mattis mauris consectetur elementum.", "Sam Usher", "", "publish", "open", "open", "", "sam-usher", "", "", "2016-01-18 15:26:17", "2016-01-18 15:26:17", "", "0", "http://localhost/mdeal2/?post_type=testimonial&#038;p=3342", "0", "testimonial", "", "0");
INSERT INTO `wp_posts` VALUES("17694", "1", "2016-01-06 14:36:37", "2016-01-06 14:36:37", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2016-01-06 14:36:37", "2016-01-06 14:36:37", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17695", "1", "2016-01-06 14:40:44", "2016-01-06 14:40:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1452091239833{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2016-01-06 14:40:44", "2016-01-06 14:40:44", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17696", "1", "2016-01-06 14:44:41", "2016-01-06 14:44:41", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1452091239833{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2016-01-06 14:44:41", "2016-01-06 14:44:41", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17292", "1", "2015-11-26 10:36:14", "2015-11-26 10:36:14", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:36:14", "2015-11-26 10:36:14", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3393", "1", "2015-06-05 01:58:42", "2015-06-05 01:58:42", "<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[text subject]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n      <div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center\">\r\n             [submit class:btn class:btn-primary \"Submit\"]\r\n      </div>\r\n</div>\n[your-subject]\n[your-name] <wordpress@192.168.1.110>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\nadmin@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP EXO Theme <wordpress@192.168.1.110>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Contact - Corporate", "", "publish", "open", "open", "", "contact-corporate", "", "", "2015-06-10 09:53:32", "2015-06-10 09:53:32", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&#038;p=3393", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("3503", "1", "2015-06-08 18:24:53", "2015-06-08 18:24:53", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435924322019{padding-top: 80px !important;padding-bottom: 140px !important;}\" el_class=\"z-index-1\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\" icon_color=\"#e0e0e0\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\" icon_fontawesome=\"fa fa-quote-left\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "publish", "open", "open", "", "testimonials", "", "", "2015-07-03 11:53:07", "2015-07-03 11:53:07", "", "0", "http://localhost/mdeal2/?page_id=3503", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("3504", "1", "2015-06-08 18:18:15", "2015-06-08 18:18:15", "[vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1432650953640{padding-top: 60px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-08 18:18:15", "2015-06-08 18:18:15", "", "3503", "http://localhost/mdeal2/?p=3504", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3505", "1", "2015-06-08 18:20:04", "2015-06-08 18:20:04", "[vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787603652{padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-08 18:20:04", "2015-06-08 18:20:04", "", "3503", "http://localhost/mdeal2/?p=3505", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3506", "1", "2015-06-08 18:21:34", "2015-06-08 18:21:34", "[vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787692657{margin-top: -40px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-08 18:21:34", "2015-06-08 18:21:34", "", "3503", "http://localhost/mdeal2/?p=3506", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3507", "1", "2015-06-08 18:21:51", "2015-06-08 18:21:51", "[vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-08 18:21:51", "2015-06-08 18:21:51", "", "3503", "http://localhost/mdeal2/?p=3507", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3510", "1", "2015-06-08 19:18:00", "2015-06-08 19:18:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-08 19:18:00", "2015-06-08 19:18:00", "", "3503", "http://localhost/mdeal2/?p=3510", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3635", "1", "2015-06-10 09:35:56", "2015-06-10 09:35:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"fa fa-cog\" cms_tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\" cms_tab_icon=\"fa  fa-cut\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\" cms_tab_icon=\"fa  fa-coffee\"][vc_column_text css_animation=\"\"]\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-autosave-v1", "", "", "2015-06-10 09:35:56", "2015-06-10 09:35:56", "", "3623", "http://localhost/mdeal2/?p=3635", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3532", "1", "2015-06-09 02:56:58", "2015-06-09 02:56:58", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 02:56:58", "2015-06-09 02:56:58", "", "3201", "http://localhost/mdeal2/?p=3532", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3530", "1", "2015-06-09 02:51:38", "2015-06-09 02:51:38", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 02:51:38", "2015-06-09 02:51:38", "", "3201", "http://localhost/mdeal2/?p=3530", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3529", "1", "2015-06-09 02:50:27", "2015-06-09 02:50:27", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ec6451\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 02:50:27", "2015-06-09 02:50:27", "", "3201", "http://localhost/mdeal2/?p=3529", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3531", "1", "2015-06-09 02:55:46", "2015-06-09 02:55:46", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 02:55:46", "2015-06-09 02:55:46", "", "3201", "http://localhost/mdeal2/?p=3531", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3533", "1", "2015-06-09 03:00:05", "2015-06-09 03:00:05", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 03:00:05", "2015-06-09 03:00:05", "", "3201", "http://localhost/mdeal2/?p=3533", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3534", "1", "2015-06-09 03:06:06", "2015-06-09 03:06:06", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 03:06:06", "2015-06-09 03:06:06", "", "3201", "http://localhost/mdeal2/?p=3534", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14247", "1", "2015-06-11 03:36:26", "2015-06-11 03:36:26", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-11 03:36:26", "2015-06-11 03:36:26", "", "3201", "http://localhost/mdeal2/?p=14247", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3535", "1", "2015-06-09 03:07:43", "2015-06-09 03:07:43", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][vc_empty_space height=\"1px\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][vc_empty_space height=\"1px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433818153219{padding-bottom: 80px !important;}\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-09 03:07:43", "2015-06-09 03:07:43", "", "3201", "http://localhost/mdeal2/?p=3535", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3551", "1", "2015-06-09 07:24:58", "2015-06-09 07:24:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:24:58", "2015-06-09 07:24:58", "", "3503", "http://localhost/mdeal2/?p=3551", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3553", "1", "2015-06-09 07:26:40", "2015-06-09 07:26:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834779121{border-top-width: 1px !important;background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;border-top-color: #e9e9e9 !important;border-top-style: solid !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:26:40", "2015-06-09 07:26:40", "", "3503", "http://localhost/mdeal2/?p=3553", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3544", "1", "2015-06-09 04:20:04", "2015-06-09 04:20:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" image_border=\"50%\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 04:20:04", "2015-06-09 04:20:04", "", "3503", "http://localhost/mdeal2/?p=3544", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3545", "1", "2015-06-09 06:57:15", "2015-06-09 06:57:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 06:57:15", "2015-06-09 06:57:15", "", "3503", "http://localhost/mdeal2/?p=3545", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3546", "1", "2015-06-09 07:00:46", "2015-06-09 07:00:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:00:46", "2015-06-09 07:00:46", "", "3503", "http://localhost/mdeal2/?p=3546", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3547", "1", "2015-06-09 07:02:17", "2015-06-09 07:02:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:02:17", "2015-06-09 07:02:17", "", "3503", "http://localhost/mdeal2/?p=3547", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3548", "1", "2015-06-09 07:04:41", "2015-06-09 07:04:41", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:04:41", "2015-06-09 07:04:41", "", "3503", "http://localhost/mdeal2/?p=3548", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3549", "1", "2015-06-09 07:13:07", "2015-06-09 07:13:07", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:13:07", "2015-06-09 07:13:07", "", "3503", "http://localhost/mdeal2/?p=3549", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3552", "1", "2015-06-09 07:26:15", "2015-06-09 07:26:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834779121{border-top-width: 1px !important;background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;border-top-color: #e9e9e9 !important;border-top-style: solid !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:26:15", "2015-06-09 07:26:15", "", "3503", "http://localhost/mdeal2/?p=3552", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3550", "1", "2015-06-09 07:19:09", "2015-06-09 07:19:09", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:19:09", "2015-06-09 07:19:09", "", "3503", "http://localhost/mdeal2/?p=3550", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3558", "1", "2015-06-09 07:50:27", "2015-06-09 07:50:27", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:50:27", "2015-06-09 07:50:27", "", "3503", "http://localhost/mdeal2/?p=3558", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3559", "1", "2015-06-09 07:54:27", "2015-06-09 07:54:27", "", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:54:27", "2015-06-09 07:54:27", "", "3503", "http://localhost/mdeal2/?p=3559", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3554", "1", "2015-06-09 07:28:32", "2015-06-09 07:28:32", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:28:32", "2015-06-09 07:28:32", "", "3503", "http://localhost/mdeal2/?p=3554", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3557", "1", "2015-06-09 07:45:45", "2015-06-09 07:45:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:45:45", "2015-06-09 07:45:45", "", "3503", "http://localhost/mdeal2/?p=3557", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3561", "1", "2015-06-09 07:57:32", "2015-06-09 07:57:32", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:57:32", "2015-06-09 07:57:32", "", "3503", "http://localhost/mdeal2/?p=3561", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3560", "1", "2015-06-09 07:55:24", "2015-06-09 07:55:24", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:55:24", "2015-06-09 07:55:24", "", "3503", "http://localhost/mdeal2/?p=3560", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3562", "1", "2015-07-09 09:22:18", "2015-07-09 09:22:18", "<p>[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435924322019{padding-top: 80px !important;padding-bottom: 140px !important;}\" el_class=\"z-index-1\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\" icon_color=\"#e0e0e0\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\" icon_fontawesome=\"fa fa-quote-left\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]</p>\n", "Testimonials", "", "inherit", "open", "open", "", "3503-autosave-v1", "", "", "2015-07-09 09:22:18", "2015-07-09 09:22:18", "", "3503", "http://localhost/mdeal2/?p=3562", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3565", "1", "2015-06-09 08:00:20", "2015-06-09 08:00:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:00:20", "2015-06-09 08:00:20", "", "3503", "http://localhost/mdeal2/?p=3565", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3563", "1", "2015-06-09 07:58:55", "2015-06-09 07:58:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"1\" show_image=\"1\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:58:55", "2015-06-09 07:58:55", "", "3503", "http://localhost/mdeal2/?p=3563", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3568", "1", "2015-06-09 08:03:42", "2015-06-09 08:03:42", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:03:42", "2015-06-09 08:03:42", "", "3503", "http://localhost/mdeal2/?p=3568", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3564", "1", "2015-06-09 07:59:48", "2015-06-09 07:59:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"1\" show_image=\"1\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 07:59:48", "2015-06-09 07:59:48", "", "3503", "http://localhost/mdeal2/?p=3564", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3567", "1", "2015-06-09 08:01:59", "2015-06-09 08:01:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:01:59", "2015-06-09 08:01:59", "", "3503", "http://localhost/mdeal2/?p=3567", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3566", "1", "2015-06-09 08:00:56", "2015-06-09 08:00:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:00:56", "2015-06-09 08:00:56", "", "3503", "http://localhost/mdeal2/?p=3566", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3577", "1", "2015-06-09 08:10:30", "2015-06-09 08:10:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:10:30", "2015-06-09 08:10:30", "", "3503", "http://localhost/mdeal2/?p=3577", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3573", "1", "2015-06-09 08:08:57", "2015-06-09 08:08:57", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"1\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:08:57", "2015-06-09 08:08:57", "", "3503", "http://localhost/mdeal2/?p=3573", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3574", "1", "2015-06-09 08:09:38", "2015-06-09 08:09:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:09:38", "2015-06-09 08:09:38", "", "3503", "http://localhost/mdeal2/?p=3574", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3576", "1", "2015-06-09 08:10:08", "2015-06-09 08:10:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][cshero-testimonial heading_size=\"\" heading_align=\"text-left\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"1\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" excerpt_length_font_size=\"\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:10:08", "2015-06-09 08:10:08", "", "3503", "http://localhost/mdeal2/?p=3576", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3575", "1", "2015-06-09 08:09:52", "2015-06-09 08:09:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" subtitle_heading_size=\"\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"40px 40px 20px 40px\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:09:52", "2015-06-09 08:09:52", "", "3503", "http://localhost/mdeal2/?p=3575", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3587", "1", "2015-06-09 08:28:43", "2015-06-09 08:28:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:28:43", "2015-06-09 08:28:43", "", "3503", "http://localhost/mdeal2/?p=3587", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3586", "1", "2015-06-09 08:28:31", "2015-06-09 08:28:31", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:28:31", "2015-06-09 08:28:31", "", "3503", "http://localhost/mdeal2/?p=3586", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3585", "1", "2015-06-09 08:27:22", "2015-06-09 08:27:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"text-left\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:27:22", "2015-06-09 08:27:22", "", "3503", "http://localhost/mdeal2/?p=3585", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3589", "1", "2015-06-09 08:38:33", "2015-06-09 08:38:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:38:33", "2015-06-09 08:38:33", "", "3503", "http://localhost/mdeal2/?p=3589", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3591", "1", "2015-06-09 08:45:36", "2015-06-09 08:45:36", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_title_heading=\"\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:45:36", "2015-06-09 08:45:36", "", "3503", "http://localhost/mdeal2/?p=3591", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15337", "1", "2015-06-24 09:16:48", "2015-06-24 09:16:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-anchor\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-24 09:16:48", "2015-06-24 09:16:48", "", "3503", "http://localhost/mdeal2/?p=15337", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3593", "1", "2015-06-09 08:52:05", "2015-06-09 08:52:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"3\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:52:05", "2015-06-09 08:52:05", "", "3503", "http://localhost/mdeal2/?p=3593", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3592", "1", "2015-06-09 08:47:00", "2015-06-09 08:47:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_title_heading=\"\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:47:00", "2015-06-09 08:47:00", "", "3503", "http://localhost/mdeal2/?p=3592", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3595", "1", "2015-06-09 08:57:06", "2015-06-09 08:57:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:57:06", "2015-06-09 08:57:06", "", "3503", "http://localhost/mdeal2/?p=3595", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17291", "1", "2015-11-26 10:35:01", "2015-11-26 10:35:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:35:01", "2015-11-26 10:35:01", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3594", "1", "2015-06-09 08:56:45", "2015-06-09 08:56:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"4\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 08:56:45", "2015-06-09 08:56:45", "", "3503", "http://localhost/mdeal2/?p=3594", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3600", "1", "2015-06-09 09:26:28", "2015-06-09 09:26:28", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 09:26:28", "2015-06-09 09:26:28", "", "3503", "http://localhost/mdeal2/?p=3600", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3601", "1", "2015-06-09 09:29:15", "2015-06-09 09:29:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" morelink=\"\" moretext=\"\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-09 09:29:15", "2015-06-09 09:29:15", "", "3503", "http://localhost/mdeal2/?p=3601", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3623", "1", "2015-06-10 01:18:55", "2015-06-10 01:18:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"20px\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"fa fa-cog\" cms_tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\" cms_tab_icon=\"fa  fa-cut\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\" cms_tab_icon=\"fa  fa-coffee\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row]", "Tabs", "", "publish", "open", "open", "", "tabs", "", "", "2015-06-10 09:37:10", "2015-06-10 09:37:10", "", "0", "http://localhost/mdeal2/?page_id=3623", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("3624", "1", "2015-06-10 01:18:55", "2015-06-10 01:18:55", "", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 01:18:55", "2015-06-10 01:18:55", "", "3623", "http://localhost/mdeal2/?p=3624", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3629", "1", "2015-06-10 01:20:57", "2015-06-10 01:20:57", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#444444\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#444444\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#444444\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Pricing Tables", "", "publish", "open", "open", "", "pricing-tables", "", "", "2015-12-18 16:18:57", "2015-12-18 16:18:57", "", "0", "http://localhost/mdeal2/?page_id=3629", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17519", "1", "2015-12-10 23:46:02", "2015-12-10 23:46:02", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-12-10 23:46:02", "2015-12-10 23:46:02", "", "3629", "http://localhost/mdeal2/3629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17520", "1", "2015-12-10 23:46:24", "2015-12-10 23:46:24", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-12-10 23:46:24", "2015-12-10 23:46:24", "", "3629", "http://localhost/mdeal2/3629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3630", "1", "2015-06-10 01:20:57", "2015-06-10 01:20:57", "", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 01:20:57", "2015-06-10 01:20:57", "", "3629", "http://localhost/mdeal2/?p=3630", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3636", "1", "2015-06-10 01:25:34", "2015-06-10 01:25:34", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#444\" title_font_color_hover=\"#444\" tab_border_color=\"#444\" tab_border_color_active=\"#444\" style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 01:25:34", "2015-06-10 01:25:34", "", "3623", "http://localhost/mdeal2/?p=3636", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3637", "1", "2015-06-10 01:27:56", "2015-06-10 01:27:56", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#8224e3\" title_font_color_hover=\"#81d742\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 01:27:56", "2015-06-10 01:27:56", "", "3623", "http://localhost/mdeal2/?p=3637", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3639", "1", "2015-06-10 02:12:30", "2015-06-10 02:12:30", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#8224e3\" title_font_color_hover=\"#81d742\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 02:12:30", "2015-06-10 02:12:30", "", "3623", "http://localhost/mdeal2/?p=3639", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3638", "1", "2015-06-10 01:28:38", "2015-06-10 01:28:38", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#8224e3\" title_font_color_hover=\"#81d742\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#8224e3\" title_font_color_hover=\"#81d742\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style2\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 01:28:38", "2015-06-10 01:28:38", "", "3623", "http://localhost/mdeal2/?p=3638", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3640", "1", "2015-06-10 02:14:13", "2015-06-10 02:14:13", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#71199e\" title_font_color_hover=\"#841f77\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 02:14:13", "2015-06-10 02:14:13", "", "3623", "http://localhost/mdeal2/?p=3640", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3642", "1", "2015-06-10 02:21:04", "2015-06-10 02:21:04", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 02:21:04", "2015-06-10 02:21:04", "", "3623", "http://localhost/mdeal2/?p=3642", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3641", "1", "2015-06-10 02:17:26", "2015-06-10 02:17:26", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#71199e\" title_font_color_hover=\"#841f77\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\" tab_bg_color_hover=\"#81d742\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 02:17:26", "2015-06-10 02:17:26", "", "3623", "http://localhost/mdeal2/?p=3641", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3643", "1", "2015-06-10 02:41:51", "2015-06-10 02:41:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 02:41:51", "2015-06-10 02:41:51", "", "3623", "http://localhost/mdeal2/?p=3643", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3644", "1", "2015-06-10 03:03:26", "2015-06-10 03:03:26", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:03:26", "2015-06-10 03:03:26", "", "3623", "http://localhost/mdeal2/?p=3644", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3645", "1", "2015-06-10 03:14:36", "2015-06-10 03:14:36", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:14:36", "2015-06-10 03:14:36", "", "3623", "http://localhost/mdeal2/?p=3645", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3646", "1", "2015-06-10 03:15:25", "2015-06-10 03:15:25", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:15:25", "2015-06-10 03:15:25", "", "3623", "http://localhost/mdeal2/?p=3646", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3647", "1", "2015-06-10 03:16:40", "2015-06-10 03:16:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:16:40", "2015-06-10 03:16:40", "", "3623", "http://localhost/mdeal2/?p=3647", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3648", "1", "2015-06-10 03:18:51", "2015-06-10 03:18:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:18:51", "2015-06-10 03:18:51", "", "3623", "http://localhost/mdeal2/?p=3648", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3649", "1", "2015-06-10 03:32:06", "2015-06-10 03:32:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:32:06", "2015-06-10 03:32:06", "", "3623", "http://localhost/mdeal2/?p=3649", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3650", "1", "2015-06-10 03:38:33", "2015-06-10 03:38:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 03:38:33", "2015-06-10 03:38:33", "", "3623", "http://localhost/mdeal2/?p=3650", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14221", "1", "2015-06-10 09:05:37", "2015-06-10 09:05:37", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:05:37", "2015-06-10 09:05:37", "", "3623", "http://localhost/mdeal2/?p=14221", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3651", "1", "2015-06-10 04:02:15", "2015-06-10 04:02:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 04:02:15", "2015-06-10 04:02:15", "", "3623", "http://localhost/mdeal2/?p=3651", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("3652", "1", "2015-06-10 04:02:49", "2015-06-10 04:02:49", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 04:02:49", "2015-06-10 04:02:49", "", "3623", "http://localhost/mdeal2/?p=3652", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("9039", "1", "2014-12-09 09:00:46", "2014-12-09 09:00:46", "", "PREMIUM", "", "publish", "closed", "closed", "", "premium", "", "", "2015-12-11 13:49:26", "2015-12-11 13:49:26", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9039", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9135", "1", "2014-12-10 02:21:27", "2014-12-10 02:21:27", "", "STARTER", "", "publish", "closed", "closed", "", "starter-2", "", "", "2015-06-30 09:18:15", "2015-06-30 09:18:15", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9135", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9136", "1", "2014-12-10 02:22:17", "2014-12-10 02:22:17", "", "BASIC", "", "publish", "closed", "closed", "", "basic-2", "", "", "2015-06-30 09:19:03", "2015-06-30 09:19:03", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9136", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9137", "1", "2014-12-10 02:23:05", "2014-12-10 02:23:05", "", "CLASSIC", "", "publish", "closed", "closed", "", "classic-2", "", "", "2015-06-30 09:19:27", "2015-06-30 09:19:27", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9137", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9138", "1", "2014-12-10 02:23:47", "2014-12-10 02:23:47", "", "PREMIUM", "", "publish", "closed", "closed", "", "premium-2", "", "", "2015-06-30 09:19:54", "2015-06-30 09:19:54", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9138", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9163", "1", "2014-12-10 03:43:11", "2014-12-10 03:43:11", "3030", "PROMO PACKAGE", "", "publish", "closed", "closed", "", "promo-package", "", "", "2015-12-11 14:10:45", "2015-12-11 14:10:45", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9163", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9164", "1", "2014-12-10 03:44:01", "2014-12-10 03:44:01", "", "PROMO PACKAGE", "", "publish", "closed", "closed", "", "promo-package-2", "", "", "2015-12-11 14:05:44", "2015-12-11 14:05:44", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9164", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9166", "1", "2014-12-10 03:46:36", "2014-12-10 03:46:36", "", "PROMO PACKAGE", "", "publish", "closed", "closed", "", "9166", "", "", "2015-12-11 14:10:07", "2015-12-11 14:10:07", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9166", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9206", "1", "2014-12-10 07:57:18", "2014-12-10 07:57:18", "", "BASIC", "", "publish", "closed", "closed", "", "basic-3", "", "", "2014-12-10 07:57:18", "2014-12-10 07:57:18", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9206", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9218", "1", "2014-12-10 07:58:17", "2014-12-10 07:58:17", "", "STANDARD", "", "publish", "closed", "closed", "", "standard", "", "", "2014-12-10 07:58:17", "2014-12-10 07:58:17", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9218", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9219", "1", "2014-12-10 07:58:53", "2014-12-10 07:58:53", "", "PROFESSIONAL", "", "publish", "closed", "closed", "", "professional", "", "", "2014-12-10 07:58:53", "2014-12-10 07:58:53", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=9219", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("14205", "1", "2015-03-09 23:19:11", "2015-03-09 23:19:11", "", "Basic", "", "publish", "closed", "closed", "", "basic-4", "", "", "2015-03-09 23:19:11", "2015-03-09 23:19:11", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=14205", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("14206", "1", "2015-03-09 23:20:27", "2015-03-09 23:20:27", "", "STANDARD", "", "publish", "closed", "closed", "", "standard-2", "", "", "2015-03-09 23:20:27", "2015-03-09 23:20:27", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=14206", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("14207", "1", "2015-03-09 23:21:28", "2015-03-09 23:21:28", "", "PROFESSIONAL", "", "publish", "closed", "closed", "", "professional-2", "", "", "2015-03-09 23:21:28", "2015-03-09 23:21:28", "", "0", "http://wordpress.joomexp.com/suarez/?post_type=pricing&#038;p=14207", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("9081", "1", "2014-12-09 23:45:42", "2014-12-09 23:45:42", "", "Monochrome", "", "inherit", "open", "open", "", "monochrome", "", "", "2014-12-09 23:45:42", "2014-12-09 23:45:42", "", "0", "http://localhost/mdeal2/wp-content/uploads/2014/12/Monochrome.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("9084", "1", "2014-12-09 23:45:46", "2014-12-09 23:45:46", "", "p5", "", "inherit", "open", "open", "", "p5", "", "", "2014-12-09 23:45:46", "2014-12-09 23:45:46", "", "0", "http://localhost/mdeal2/wp-content/uploads/2014/12/p5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("9088", "1", "2014-12-09 23:45:52", "2014-12-09 23:45:52", "", "p9", "", "inherit", "open", "open", "", "p9", "", "", "2014-12-09 23:45:52", "2014-12-09 23:45:52", "", "0", "http://localhost/mdeal2/wp-content/uploads/2014/12/p9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("9167", "1", "2014-12-10 03:46:01", "2014-12-10 03:46:01", "", "spa", "", "inherit", "open", "open", "", "spa", "", "", "2014-12-10 03:46:01", "2014-12-10 03:46:01", "", "0", "http://localhost/mdeal2/wp-content/uploads/2014/12/spa.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("9169", "1", "2014-12-10 03:46:09", "2014-12-10 03:46:09", "Young couple is having a back massage at the spa centre.\n\n[url=http://www.istockphoto.com/search/lightbox/9786786][img]http://dl.dropbox.com/u/40117171/couples.jpg[/img][/url]", "Beautiful couple enjoying in the back massage.", "", "inherit", "open", "open", "", "beautiful-couple-enjoying-in-the-back-massage", "", "", "2014-12-10 03:46:09", "2014-12-10 03:46:09", "", "0", "http://localhost/mdeal2/wp-content/uploads/2014/12/spa-couple.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14209", "1", "2015-06-10 07:51:44", "2015-06-10 07:51:44", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418177963854{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" button_font_pricing_color=\"#ffffff\" category=\"6\" el_class=\"primary-color\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"10\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 07:51:44", "2015-06-10 07:51:44", "", "3629", "http://localhost/mdeal2/?p=14209", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17522", "1", "2015-12-10 23:52:04", "2015-12-10 23:52:04", "", "favicon", "", "inherit", "open", "open", "", "favicon", "", "", "2015-12-10 23:52:04", "2015-12-10 23:52:04", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/12/favicon.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14211", "1", "2015-06-10 07:53:10", "2015-06-10 07:53:10", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418177963854{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" button_font_pricing_color=\"#ffffff\" category=\"6,56\" el_class=\"primary-color\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 07:53:10", "2015-06-10 07:53:10", "", "3629", "http://localhost/mdeal2/?p=14211", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14212", "1", "2015-06-10 08:05:21", "2015-06-10 08:05:21", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418177963854{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" button_font_pricing_color=\"#ffffff\" category=\"6,56\" el_class=\"primary-color\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 08:05:21", "2015-06-10 08:05:21", "", "3629", "http://localhost/mdeal2/?p=14212", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14215", "1", "2015-06-10 08:28:29", "2015-06-10 08:28:29", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418177963854{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 08:28:29", "2015-06-10 08:28:29", "", "3629", "http://localhost/mdeal2/?p=14215", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14213", "1", "2015-06-10 08:08:55", "2015-06-10 08:08:55", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418177963854{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" button_font_pricing_color=\"#ffffff\" category=\"6,56\" el_class=\"primary-color\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 08:08:55", "2015-06-10 08:08:55", "", "3629", "http://localhost/mdeal2/?p=14213", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14214", "1", "2015-06-10 08:12:16", "2015-06-10 08:12:16", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418177963854{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" button_font_pricing_color=\"#ffffff\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 08:12:16", "2015-06-10 08:12:16", "", "3629", "http://localhost/mdeal2/?p=14214", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14216", "1", "2015-06-10 08:48:44", "2015-06-10 08:48:44", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1433926109061{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#70d2e5\" content_background_pricing_color=\"#70d2e5\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#70d2e5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-10 08:48:44", "2015-06-10 08:48:44", "", "3629", "http://localhost/mdeal2/?p=14216", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14217", "1", "2015-06-10 08:56:55", "2015-06-10 08:56:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 08:56:55", "2015-06-10 08:56:55", "", "3623", "http://localhost/mdeal2/?p=14217", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14218", "1", "2015-06-10 09:02:39", "2015-06-10 09:02:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\" fa-cog\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:02:39", "2015-06-10 09:02:39", "", "3623", "http://localhost/mdeal2/?p=14218", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14219", "1", "2015-06-10 09:03:41", "2015-06-10 09:03:41", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:03:41", "2015-06-10 09:03:41", "", "3623", "http://localhost/mdeal2/?p=14219", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14220", "1", "2015-06-10 09:04:21", "2015-06-10 09:04:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:04:21", "2015-06-10 09:04:21", "", "3623", "http://localhost/mdeal2/?p=14220", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14222", "1", "2015-06-10 09:11:56", "2015-06-10 09:11:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"#000\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:11:56", "2015-06-10 09:11:56", "", "3623", "http://localhost/mdeal2/?p=14222", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14223", "1", "2015-06-10 09:14:39", "2015-06-10 09:14:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:14:39", "2015-06-10 09:14:39", "", "3623", "http://localhost/mdeal2/?p=14223", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14224", "1", "2015-06-10 09:18:40", "2015-06-10 09:18:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"fa fa-cog\" cms_tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:18:40", "2015-06-10 09:18:40", "", "3623", "http://localhost/mdeal2/?p=14224", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14225", "1", "2015-06-10 09:33:53", "2015-06-10 09:33:53", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"120px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"fa fa-cog\" cms_tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\" cms_tab_icon=\"fa  fa-cut\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\" cms_tab_icon=\"fa  fa-coffee\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"120px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:33:53", "2015-06-10 09:33:53", "", "3623", "http://localhost/mdeal2/?p=14225", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14226", "1", "2015-06-10 09:37:10", "2015-06-10 09:37:10", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"20px\"][vc_tabs interval=\"0\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\" tab_style=\"style1\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tour interval=\"0\" cms_tab_style=\"style-1\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_bg_color_hover=\"#eeeeee\"][vc_tab title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" tab_border_color=\"#dd3333\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab icon_title=\"\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab icon_title=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433904075212{border-bottom-width: 1px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tour interval=\"0\" tab_style=\"style2\" title_font_color=\"#333333\" title_font_color_hover=\"#ffffff\" tab_bg_color_hover=\"#1baccb\" cms_tab_style=\"style-1\"][vc_tab tab_icon=\"\" title=\"TAB CONTENT 1\" tab_id=\"f2790c04-5f4f-8\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"9d6f9cbd-b626-10\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433905388797-2-4\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tour][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"100px\"][vc_tabs interval=\"0\" tab_style=\"style3\" title_font_color=\"#333333\" title_font_color_hover=\"#333333\" tab_border_color=\"#1baccb\" tab_border_color_active=\"#eeee22\" style=\"style1\"][vc_tab tab_icon=\"fa fa-home\" title=\"TAB CONTENT 1\" tab_id=\"1433899187-1-58\" tab_icon_text=\"fa fa-cog\" cms_tab_icon=\"fa fa-cog\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 2\" tab_id=\"1433899514015-2-3\" cms_tab_icon=\"fa  fa-cut\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][vc_tab tab_icon=\"\" title=\"TAB CONTENT 3\" tab_id=\"1433899515672-3-7\" cms_tab_icon=\"fa  fa-coffee\"][vc_column_text css_animation=\"\"]\r\n<h5 style=\"font-size: 14px; margin: 0 0 20px;\">EXO THEME MULTI STYLE THEME FOR WORDPRESS</h5>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/vc_column_text][/vc_tab][/vc_tabs][vc_empty_space height=\"100px\"][/vc_column][/vc_row]", "Tabs", "", "inherit", "open", "open", "", "3623-revision-v1", "", "", "2015-06-10 09:37:10", "2015-06-10 09:37:10", "", "3623", "http://localhost/mdeal2/?p=14226", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14227", "1", "2015-06-10 09:43:29", "2015-06-10 09:43:29", "<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\">[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\r\n	</div>\r\n</div>\n[your-subject]\n[your-name] <wordpress@192.168.1.110>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\nadmin@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP EXO Theme <wordpress@192.168.1.110>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Element Forms", "", "publish", "open", "open", "", "element-forms", "", "", "2015-06-10 10:39:21", "2015-06-10 10:39:21", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&#038;p=14227", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("14241", "1", "2015-06-11 02:23:58", "2015-06-11 02:23:58", "<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n                <div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 404 77\" height=\"100%\" width=\"100%\" class=\"graphic cms-madoka\"><path d=\"m0,0l404,0l0,77l-404,0l0,-77z\"/></svg>[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 404 77\" height=\"100%\" width=\"100%\" class=\"graphic cms-madoka\"><path d=\"m0,0l404,0l0,77l-404,0l0,-77z\"/></svg>[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 404 77\" height=\"100%\" width=\"100%\" class=\"graphic cms-madoka\"><path d=\"m0,0l404,0l0,77l-404,0l0,-77z\"/></svg>[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\r\n	</div>\r\n</div>\n[your-subject]\n[your-name] <wordpress@192.168.1.110>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\nadmin@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP EXO Theme <wordpress@192.168.1.110>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Forms Madoka", "", "publish", "open", "open", "", "element-forms_copy", "", "", "2015-06-11 02:27:46", "2015-06-11 02:27:46", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&#038;p=14241", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("14244", "1", "2015-06-11 02:56:32", "2015-06-11 02:56:32", "<div class=\"row\" style=\"margin-bottom: 0px;\">\r\n	<div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 1200 60\" height=\"100%\" width=\"300%\" class=\"graphic cms-kozakura\"><path d=\"M1200,9c0,0-305.005,0-401.001,0C733,9,675.327,4.969,598,4.969C514.994,4.969,449.336,9,400.333,9C299.666,9,0,9,0,9v43c0,0,299.666,0,400.333,0c49.002,0,114.66,3.484,197.667,3.484c77.327,0,135-3.484,200.999-3.484C894.995,52,1200,52,1200,52V9z\"/></svg>[text name]<span class=\"label\"><span class=\"label-content\">First Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 1200 60\" height=\"100%\" width=\"300%\" class=\"graphic cms-kozakura\"><path d=\"M1200,9c0,0-305.005,0-401.001,0C733,9,675.327,4.969,598,4.969C514.994,4.969,449.336,9,400.333,9C299.666,9,0,9,0,9v43c0,0,299.666,0,400.333,0c49.002,0,114.66,3.484,197.667,3.484c77.327,0,135-3.484,200.999-3.484C894.995,52,1200,52,1200,52V9z\"/></svg>[text last-name]<span class=\"label\"><span class=\"label-content\">Last Name</span></span></div>\r\n	</div>\r\n        <div class=\"col-xs-12 col-sm-4 col-md-4 col-lg-4\">\r\n		<div class=\"input-filled\"><svg preserveAspectRatio=\"none\" viewBox=\"0 0 1200 60\" height=\"100%\" width=\"300%\" class=\"graphic cms-kozakura\"><path d=\"M1200,9c0,0-305.005,0-401.001,0C733,9,675.327,4.969,598,4.969C514.994,4.969,449.336,9,400.333,9C299.666,9,0,9,0,9v43c0,0,299.666,0,400.333,0c49.002,0,114.66,3.484,197.667,3.484c77.327,0,135-3.484,200.999-3.484C894.995,52,1200,52,1200,52V9z\"/></svg>[email email]<span class=\"label\"><span class=\"label-content\">Email</span></span></div>\r\n	</div>\r\n</div>\r\n<div class=\"row\">\r\n	<div class=\"col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center\">\r\n[submit \"Submit\"]\r\n</div>\r\n</div>\n[your-subject]\n[your-name] <wordpress@192.168.1.110>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\nadmin@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nWP EXO Theme <wordpress@192.168.1.110>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on WP EXO Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.", "Forms Kozakura", "", "publish", "open", "open", "", "element-forms_copy-2", "", "", "2015-06-22 14:06:20", "2015-06-22 14:06:20", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&#038;p=14244", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("15538", "1", "2015-06-26 13:48:02", "2015-06-26 13:48:02", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435001849349{padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421408612047{padding-top: 80px !important;padding-bottom: 100px !important;}\" full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_row_inner css=\".vc_custom_1421406403730{padding-top: 75px !important;}\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_row_inner css=\".vc_custom_1421407701578{padding-top: 75px !important;}\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-06-26 13:48:02", "2015-06-26 13:48:02", "", "14279", "http://localhost/mdeal2/?p=15538", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14279", "1", "2015-06-12 01:54:06", "2015-06-12 01:54:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1451399240817{padding-bottom: 40px !important;}\" exo_same_height=\"no\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Animated Graphs", "", "publish", "open", "open", "", "progress-bars", "", "", "2015-12-29 14:28:21", "2015-12-29 14:28:21", "", "0", "http://localhost/mdeal2/?page_id=14279", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17661", "1", "2015-12-28 15:39:31", "2015-12-28 15:39:31", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:39:31", "2015-12-28 15:39:31", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14280", "1", "2015-06-12 01:54:06", "2015-06-12 01:54:06", "[vc_row full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" text_align=\"center\"][vc_column_text]\r\n<h3>CAREFULLY CREATED TO USE ON ANY DESIGN OR THEME</h3>\r\n<span style=\"font-weight: 300; letter-spacing: 1px;\">Use any elements on the themes or create your own style</span>[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1421408612047{padding-top: 80px !important;padding-bottom: 100px !important;}\" full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1421406403730{padding-top: 75px !important;}\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1421407701578{padding-top: 75px !important;}\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-06-12 01:54:06", "2015-06-12 01:54:06", "", "14279", "http://localhost/mdeal2/?p=14280", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17518", "1", "2015-12-18 16:10:46", "2015-12-18 16:10:46", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-autosave-v1", "", "", "2015-12-18 16:10:46", "2015-12-18 16:10:46", "", "3629", "http://localhost/mdeal2/3629-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14288", "1", "2015-06-12 02:01:01", "2015-06-12 02:01:01", " ", "", "", "publish", "open", "closed", "", "14288", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=14288", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("14295", "1", "2015-06-12 02:08:02", "2015-06-12 02:08:02", "[vc_row css=\".vc_custom_1421922251348{border-bottom-width: 1px !important;padding-top: 10px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1434075070531{padding-top: 50px !important;padding-bottom: 50px !important;}\"]<div class=\"cs-quote-style-2\" style=\"color: #868686;\">\r\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n\r\n<h6 class=\"quote-author\" style=\"color: #333; text-align: left;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075090676{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-1\" style=\"color: #868686;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075109754{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-3\" style=\"color: #333333;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1419327543104{padding-top: 100px !important;padding-bottom: 120px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs_custom_heading text=\"ALTERNATE COLOR\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%2370d2e5\" style=\"style-none\" css=\".vc_custom_1421923254148{margin-bottom: 60px !important;}\" el_class=\"font-semibold\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075126307{padding-bottom: 50px !important;}\"]<div class=\"cs-quote-style-2-alt\" style=\"color: #868686; text-align: left;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333; text-align: left;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075142896{padding-top: 10px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-1-alt\" style=\"color: #868686; padding-right: 90px;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075160188{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-3-alt\" style=\"color: #333;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row]", "Block quotes", "", "publish", "open", "open", "", "block-quotes", "", "", "2015-06-12 02:12:44", "2015-06-12 02:12:44", "", "0", "http://localhost/mdeal2/?page_id=14295", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14296", "1", "2015-06-12 02:08:02", "2015-06-12 02:08:02", "[vc_row css=\".vc_custom_1421922251348{border-bottom-width: 1px !important;padding-top: 10px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1421922319872{padding-top: 50px !important;padding-bottom: 50px !important;}\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - WHO WE ARE [/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1418202891291{padding-top: 30px !important;padding-bottom: 30px !important;}\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - WHO WE ARE [/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1421923147196{padding-top: 30px !important;padding-bottom: 30px !important;}\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - WHO WE ARE [/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1419327543104{padding-top: 100px !important;padding-bottom: 120px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs_custom_heading text=\"ALTERNATE COLOR\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%2370d2e5\" style=\"style-none\" css=\".vc_custom_1421923254148{margin-bottom: 60px !important;}\" el_class=\"font-semibold\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1421924087254{padding-bottom: 50px !important;}\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - WHO WE ARE [/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1421923846747{padding-top: 10px !important;padding-bottom: 30px !important;}\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - WHO WE ARE [/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1421923723299{padding-top: 30px !important;padding-bottom: 30px !important;}\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - WHO WE ARE [/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row]", "Block quotes", "", "inherit", "open", "open", "", "14295-revision-v1", "", "", "2015-06-12 02:08:02", "2015-06-12 02:08:02", "", "14295", "http://localhost/mdeal2/?p=14296", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14297", "1", "2015-06-12 02:12:14", "2015-06-12 02:12:14", "[vc_row css=\".vc_custom_1421922251348{border-bottom-width: 1px !important;padding-top: 10px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1434075070531{padding-top: 50px !important;padding-bottom: 50px !important;}\"]<div class=\"cs-quote-style-2\" style=\"color: #868686;\">\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\n\n<h6 class=\"quote-author\" style=\"color: #333; text-align: left;\">- WHO WE ARE</h6>\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075090676{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-1\" style=\"color: #868686;\">\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075109754{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-3\" style=\"color: #333333;\">\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1419327543104{padding-top: 100px !important;padding-bottom: 120px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs_custom_heading text=\"ALTERNATE COLOR\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%2370d2e5\" style=\"style-none\" css=\".vc_custom_1421923254148{margin-bottom: 60px !important;}\" el_class=\"font-semibold\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075126307{padding-bottom: 50px !important;}\"]<div class=\"cs-quote-style-2-alt\" style=\"color: #868686; text-align: left;\">\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n<h6 class=\"quote-author\" style=\"color: #333; text-align: left;\">- WHO WE ARE</h6>\n</div>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1421923846747{padding-top: 10px !important;padding-bottom: 30px !important;}\"]\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n- WHO WE ARE\n\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1421923723299{padding-top: 30px !important;padding-bottom: 30px !important;}\"]\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n- WHO WE ARE\n\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row]", "Block quotes", "", "inherit", "open", "open", "", "14295-autosave-v1", "", "", "2015-06-12 02:12:14", "2015-06-12 02:12:14", "", "14295", "http://localhost/mdeal2/?p=14297", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14298", "1", "2015-06-12 02:12:44", "2015-06-12 02:12:44", "[vc_row css=\".vc_custom_1421922251348{border-bottom-width: 1px !important;padding-top: 10px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1434075070531{padding-top: 50px !important;padding-bottom: 50px !important;}\"]<div class=\"cs-quote-style-2\" style=\"color: #868686;\">\r\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>\r\n\r\n<h6 class=\"quote-author\" style=\"color: #333; text-align: left;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075090676{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-1\" style=\"color: #868686;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075109754{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-3\" style=\"color: #333333;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1419327543104{padding-top: 100px !important;padding-bottom: 120px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\"][cs_custom_heading text=\"ALTERNATE COLOR\" font_container=\"tag:h4|font_size:16px|text_align:left|color:%2370d2e5\" style=\"style-none\" css=\".vc_custom_1421923254148{margin-bottom: 60px !important;}\" el_class=\"font-semibold\"][vc_row_inner][vc_column_inner width=\"1/1\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075126307{padding-bottom: 50px !important;}\"]<div class=\"cs-quote-style-2-alt\" style=\"color: #868686; text-align: left;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333; text-align: left;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075142896{padding-top: 10px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-1-alt\" style=\"color: #868686; padding-right: 90px;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][vc_column_text css=\".vc_custom_1434075160188{padding-top: 30px !important;padding-bottom: 30px !important;}\"]<div class=\"cs-quote-style-3-alt\" style=\"color: #333;\">\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n<h6 class=\"quote-author\" style=\"color: #333;\">- WHO WE ARE</h6>\r\n</div>[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. [/vc_column_text][/vc_column][/vc_row]", "Block quotes", "", "inherit", "open", "open", "", "14295-revision-v1", "", "", "2015-06-12 02:12:44", "2015-06-12 02:12:44", "", "14295", "http://localhost/mdeal2/?p=14298", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14328", "1", "2015-06-12 03:55:03", "2015-06-12 03:55:03", "[vc_row css=\".vc_custom_1421865210078{padding-top: 35px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 1 - 1 PIXEL LIGHT GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865628413{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 2 - 1 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#444444\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 3 - 2 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"2\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 4 - LINE &amp; CENTERED ORNAMENT\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" css=\".vc_custom_1421898033867{padding-bottom: 100px !important;}\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"yes\" separator_arrow_type=\"border\" arrow_width=\"12\" icon_border_style=\"none\" separator_arrow_type_link=\"0\" accent_color=\"#eeeeee\" arrow_color=\"#eeeeee\" icon_class=\"fa fa-codepen\" icon_width=\"100px\" icon_height=\"100px\" icon_bg=\"#ffffff\" align=\"left\"][/vc_column][/vc_row]", "Separators", "", "publish", "open", "open", "", "separators-2", "", "", "2015-06-12 03:55:47", "2015-06-12 03:55:47", "", "0", "http://localhost/mdeal2/?page_id=14328", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14329", "1", "2015-06-12 03:55:03", "2015-06-12 03:55:03", "[vc_row css=\".vc_custom_1421865210078{padding-top: 35px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 1 - 1 PIXEL LIGHT GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865628413{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 2 - 1 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#444444\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 3 - 2 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"2\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 4 - LINE &amp; CENTERED ORNAMENT\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" css=\".vc_custom_1421898033867{padding-bottom: 100px !important;}\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"yes\" separator_arrow_type=\"icon\" arrow_width=\"30px\" icon_border_style=\"none\" separator_arrow_type_link=\"0\" accent_color=\"#eeeeee\" arrow_color=\"#eeeeee\" icon_class=\"fa fa-codepen\" icon_width=\"100px\" icon_height=\"100px\" icon_bg=\"#ffffff\"][/vc_column][/vc_row]", "Separators", "", "inherit", "open", "open", "", "14328-revision-v1", "", "", "2015-06-12 03:55:03", "2015-06-12 03:55:03", "", "14328", "http://localhost/mdeal2/?p=14329", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14330", "1", "2015-06-12 03:55:13", "2015-06-12 03:55:13", "[vc_row css=\".vc_custom_1421865210078{padding-top: 35px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 1 - 1 PIXEL LIGHT GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865628413{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 2 - 1 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#444444\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 3 - 2 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"2\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 4 - LINE &amp; CENTERED ORNAMENT\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" css=\".vc_custom_1421898033867{padding-bottom: 100px !important;}\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"yes\" separator_arrow_type=\"icon\" arrow_width=\"30px\" icon_border_style=\"none\" separator_arrow_type_link=\"0\" accent_color=\"#eeeeee\" arrow_color=\"#eeeeee\" icon_class=\"fa fa-codepen\" icon_width=\"100px\" icon_height=\"100px\" icon_bg=\"#ffffff\"][/vc_column][/vc_row]", "Separators", "", "inherit", "open", "open", "", "14328-autosave-v1", "", "", "2015-06-12 03:55:13", "2015-06-12 03:55:13", "", "14328", "http://localhost/mdeal2/?p=14330", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14331", "1", "2015-06-12 03:55:47", "2015-06-12 03:55:47", "[vc_row css=\".vc_custom_1421865210078{padding-top: 35px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 1 - 1 PIXEL LIGHT GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865628413{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 2 - 1 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"no\" accent_color=\"#444444\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 3 - 2 PIXEL DARK GREY LINE\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"2\" separator_arrow=\"no\" accent_color=\"#eeeeee\" arrow_width=\"12\" separator_arrow_type=\"border\" icon_border_style=\"none\" separator_arrow_type_link=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421865635714{padding-top: 95px !important;padding-bottom: 100px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_align=\"center\" text_align=\"center\"][cs_custom_heading text=\"STYLE 4 - LINE &amp; CENTERED ORNAMENT\" font_container=\"tag:h2|font_size:16px|text_align:left|color:%23333333\" style=\"style-none\" el_class=\"font-semibold\"][vc_column_text]\r\n<p style=\"text-align: left;\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt</p>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.8\" css=\".vc_custom_1421898033867{padding-bottom: 100px !important;}\"][vc_column width=\"1/1\"][vc_separator color=\"custom\" border_width=\"1\" separator_arrow=\"yes\" separator_arrow_type=\"border\" arrow_width=\"12\" icon_border_style=\"none\" separator_arrow_type_link=\"0\" accent_color=\"#eeeeee\" arrow_color=\"#eeeeee\" icon_class=\"fa fa-codepen\" icon_width=\"100px\" icon_height=\"100px\" icon_bg=\"#ffffff\" align=\"left\"][/vc_column][/vc_row]", "Separators", "", "inherit", "open", "open", "", "14328-revision-v1", "", "", "2015-06-12 03:55:47", "2015-06-12 03:55:47", "", "14328", "http://localhost/mdeal2/?p=14331", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14321", "1", "2015-06-12 03:03:16", "2015-06-12 03:03:16", "[vc_row css=\".vc_custom_1405680978553{padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\"][vc_column width=\"1/1\"][vc_column_text]<span class=\"cs-highlight-style-3\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span class=\"cs-highlight-style-3\">Nemo enim ipsam</span> voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-3\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-3\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span>[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-2\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-2\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-2\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-1\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-1\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-1\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421940315947{padding-top: 80px !important;padding-bottom: 120px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\"][vc_column width=\"1/1\"][vc_column_text]<span class=\"cs-highlight-style-3\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-3\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-3\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span>[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-2\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-2\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-2\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-1\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-1\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-1\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Text Highlights", "", "publish", "open", "open", "", "text-highlights", "", "", "2015-06-17 08:01:40", "2015-06-17 08:01:40", "", "0", "http://localhost/mdeal2/?page_id=14321", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14322", "1", "2015-06-12 03:03:16", "2015-06-12 03:03:16", "[vc_row css=\".vc_custom_1405680978553{padding-bottom: 80px !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\"][vc_column width=\"1/1\"][vc_column_text]<span class=\"cs-highlight-style-3\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. <span class=\"cs-highlight-style-3\">Nemo enim ipsam</span> voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-3\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-3\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span>[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-2\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-2\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-2\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-1\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-1\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-1\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1421940315947{padding-top: 80px !important;padding-bottom: 120px !important;background-color: #f5f5f5 !important;}\" full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\"][vc_column width=\"1/1\"][vc_column_text]<span class=\"cs-highlight-style-3\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-3\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-3\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span>[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-2\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-2\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-2\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][vc_column_text]\r\n<div style=\"padding-top: 55px;\"><span class=\"cs-highlight-style-1\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam</span>, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. <span class=\"cs-highlight-style-1\">Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet</span>, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? <span class=\"cs-highlight-style-1\">Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</span></div>\r\n[/vc_column_text][/vc_column][/vc_row]", "Text Highlights", "", "inherit", "open", "open", "", "14321-revision-v1", "", "", "2015-06-12 03:03:16", "2015-06-12 03:03:16", "", "14321", "http://localhost/mdeal2/?p=14322", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14334", "1", "2015-06-12 03:58:08", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-12 03:58:08", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=14334", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14341", "1", "2015-06-12 06:50:43", "2015-06-12 06:50:43", "", "man-371x248_c", "", "inherit", "open", "open", "", "man-371x248_c", "", "", "2015-06-12 06:50:43", "2015-06-12 06:50:43", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/man-371x248_c.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14342", "1", "2015-06-12 06:50:43", "2015-06-12 06:50:43", "", "manwithlaptop-571x381_c", "", "inherit", "open", "open", "", "manwithlaptop-571x381_c", "", "", "2015-06-12 06:50:43", "2015-06-12 06:50:43", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/manwithlaptop-571x381_c.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14343", "1", "2015-06-12 06:50:44", "2015-06-12 06:50:44", "", "White-Room-571x381_c", "", "inherit", "open", "open", "", "white-room-571x381_c", "", "", "2015-06-12 06:50:44", "2015-06-12 06:50:44", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/White-Room-571x381_c.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14351", "1", "2015-06-12 07:00:38", "2015-06-12 07:00:38", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Default\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"60px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "publish", "open", "open", "", "portfolio", "", "", "2015-06-17 08:17:33", "2015-06-17 08:17:33", "", "0", "http://localhost/mdeal2/?page_id=14351", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14352", "1", "2015-06-12 07:00:38", "2015-06-12 07:00:38", "[vc_row full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/1\" text_align=\"center\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h2|text_align:center|color:%23222222|line_height:22px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"30px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"9\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout2\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" item_bg_color=\"rgba(0,0,0,0.8)\" category_color=\"#ffffff\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" view_all_button_type=\"btn btn-default\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-12 07:00:38", "2015-06-12 07:00:38", "", "14351", "http://localhost/mdeal2/?p=14352", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14353", "1", "2015-06-12 07:01:23", "2015-06-12 07:01:23", "[vc_row full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/1\" text_align=\"center\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h2|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"9\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout2\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" item_bg_color=\"rgba(0,0,0,0.8)\" category_color=\"#ffffff\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" view_all_button_type=\"btn btn-default\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-12 07:01:23", "2015-06-12 07:01:23", "", "14351", "http://localhost/mdeal2/?p=14353", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14424", "1", "2015-06-16 02:40:51", "2015-06-16 02:40:51", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 02:40:51", "2015-06-16 02:40:51", "", "14351", "http://localhost/mdeal2/?p=14424", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14356", "1", "2015-06-12 07:17:58", "2015-06-12 07:17:58", "[vc_row full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/1\" text_align=\"center\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" item_bg_color=\"rgba(0,0,0,0.8)\" category_color=\"#ffffff\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" view_all_button_type=\"btn btn-default\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_size=\"\" heading_align=\"text-left\" heading_text_style=\"none\" subtitle_heading_size=\"\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout2\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" morelink=\"\" moretext=\"\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-12 07:17:58", "2015-06-12 07:17:58", "", "14351", "http://localhost/mdeal2/?p=14356", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14354", "1", "2015-06-12 07:02:29", "2015-06-12 07:02:29", "[vc_row full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/1\" text_align=\"center\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h2|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" item_bg_color=\"rgba(0,0,0,0.8)\" category_color=\"#ffffff\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" view_all_button_type=\"btn btn-default\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h2|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_size=\"\" heading_align=\"text-left\" heading_text_style=\"none\" subtitle_heading_size=\"\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout2\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" morelink=\"\" moretext=\"\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-12 07:02:29", "2015-06-12 07:02:29", "", "14351", "http://localhost/mdeal2/?p=14354", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14355", "1", "2015-06-12 07:07:52", "2015-06-12 07:07:52", "[vc_row full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/1\" text_align=\"center\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h2|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" item_bg_color=\"rgba(0,0,0,0.8)\" category_color=\"#ffffff\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" view_all_button_type=\"btn btn-default\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h2|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_size=\"\" heading_align=\"text-left\" heading_text_style=\"none\" subtitle_heading_size=\"\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout2\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" morelink=\"\" moretext=\"\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-12 07:07:52", "2015-06-12 07:07:52", "", "14351", "http://localhost/mdeal2/?p=14355", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14377", "1", "2015-06-14 15:59:17", "2015-06-14 15:59:17", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]\r\n[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" exo_same_height=\"no\" el_class=\"font-size-25\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" font_color=\"#13151c\"][vc_empty_space height=\"70px\"][vc_text_separator title=\"Established and trusted since 1892\" title_align=\"separator_align_center\" align=\"align_center\" color=\"custom\" border_width=\"1\" heading_size=\"h3\" accent_color=\"#dedede\" color_title=\"#888888\"][vc_empty_space height=\"30px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/4\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_btn=\"1\" button_type=\"btn-primary\" title=\"Mortgages\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3295\" link_show_more=\"#\" title_font_weight=\"inherit\" imgage_border_bottom_color=\"#00accd\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/4\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_btn=\"1\" button_type=\"btn-primary\" title=\"Financial Planning\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3296\" link_show_more=\"#\" title_font_weight=\"inherit\" imgage_border_bottom_color=\"#9cde7a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/4\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_btn=\"1\" button_type=\"btn-primary\" title=\"Pensions\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3297\" link_show_more=\"#\" title_font_weight=\"inherit\" imgage_border_bottom_color=\"#ffdd45\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][vc_column_inner width=\"1/4\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_btn=\"1\" button_type=\"btn-primary\" title=\"Investments\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3298\" link_show_more=\"#\" title_font_weight=\"inherit\" imgage_border_bottom_color=\"#f16246\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-14 15:59:17", "2015-06-14 15:59:17", "", "3201", "http://localhost/mdeal2/?p=14377", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14385", "1", "2015-06-15 09:33:29", "2015-06-15 09:33:29", "", "manredtie", "", "inherit", "open", "open", "", "manredtie", "", "", "2015-06-15 09:33:29", "2015-06-15 09:33:29", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/manredtie.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14389", "1", "2015-06-15 09:54:19", "2015-06-15 09:54:19", "[vc_row css=\".vc_custom_1433250678688{padding-top: 0px !important;padding-bottom: 60px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.1\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_border_width=\"0\" engle_duplicated_border_width=\"0\" engle_duplicated_height_style2=\"60px\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" dt_id=\"solutions\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#13151c\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#13151c\" engle_border_color=\"#71cff7\" engle_duplicated_border_color=\"#71cff7\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" enable_parallax=\"1\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"bottom\" arrow_color=\"#13151c\" bg_video_transparent=\"0\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#00accb\" icon_color_hover=\"#008db5\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-bulb\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#9edd7f\" icon_color_hover=\"#8fc972\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-create\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#fedc54\" icon_color_hover=\"#f2cc4f\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-color-palette\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ec6451\" icon_color_hover=\"#db604a\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_type=\"ionicon\" icon_ionicon=\"ion-android-options\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250708789{padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-search\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-shop\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-pen\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#222222\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"100px\" icon_heigth=\"100px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"50%\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" icon_type=\"linecons\" icon_linecons=\"vc_li vc_li-lab\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433250767948{padding-top: 80px !important;padding-bottom: 80px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/02/polygon.jpg?id=3137) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer1_width=\"232px\" lax_layer1_height=\"380px\" lax_layer1_position_x=\"0px\" lax_layer1_position_y=\"0px\" lax_layer2_width=\"774px\" lax_layer2_height=\"1014px\" lax_layer2_position_x=\"-130px\" lax_layer2_position_y=\"-800px\" lax_layer3_width=\"874px\" lax_layer3_height=\"932px\" lax_layer3_position_x=\"-300px\" lax_layer3_position_y=\"-650px\" lax_layer4_width=\"358px\" lax_layer4_height=\"224px\" lax_layer4_position_x=\"50px\" lax_layer4_position_y=\"100px\" lax_layer5_width=\"152px\" lax_layer5_height=\"183px\" lax_layer5_position_x=\"400px\" lax_layer5_position_y=\"20px\" lax_layer1_speed=\"4\" lax_layer1_move=\"20\" lax_layer2_speed=\"1\" lax_layer2_move=\"40\" lax_layer4_speed=\"5\" lax_layer4_move=\"20\" lax_layer5_speed=\"6\" lax_layer5_move=\"30\" lax_layer3_speed=\"2\" lax_layer3_move=\"40\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\"][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(0,172,203,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3085\" image_hover=\"3086\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(236,100,81,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3087\" image_hover=\"3088\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(158,221,127,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3083\" image_hover=\"3084\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(145,107,150,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3089\" image_hover=\"3090\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(254,220,84,0.8)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3081\" image_hover=\"3082\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"32px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-3\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"rgba(243,120,0,0.79)\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#222222\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" link_show_more=\"#\" image=\"3091\" image_hover=\"3092\" height_image=\"65\" content_color=\"#222222\" content_color_hover=\"#ffffff\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" same_height=\"false\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433330105526{padding-top: 40px !important;padding-bottom: 60px !important;background-color: #1e2129 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<h2 style=\"text-align: center; color: #ffffff; font-size: 32px;\">CHOOSE FROM OVER <span style=\"color: #00accb;\">1000 ICONS</span> or YOUR OWN VERY <span style=\"color: #9edd7f;\">IMAGE ICONS</span></h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1433330374188{padding-top: 0px !important;padding-bottom: 0px !important;background-color: #13151c !important;}\" full_width=\"true\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" type=\"csrow-colno-padding \" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" same_height=\"false\" row_arrow=\"yes\" arrow_color=\"#1e2129\"][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#00accb\" icon_size=\"38px\" icon_color=\"#00accb\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#00accb\" box_padding=\"70px 30px 70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" icon_title=\"ion-ios-color-wand-outline\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-eyedropper\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#00accb\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#9edd7f\" icon_title=\"ion-ios-monitor-outline\" icon_size=\"38px\" icon_color=\"#9edd7f\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".web\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#9edd7f\" box_padding=\"70px 30px \" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#9edd7f\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#fedc54\" icon_title=\"ion-iphone\" icon_size=\"38px\" icon_color=\"#fedc54\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".apps\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#fedc54\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-mobile\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#fedc54\"][/vc_column][vc_column width=\"1/4\" animation=\"left-to-right\" text_align=\"center\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" icon_animate_type=\"left-to-right\" crop_image=\"1\" width_image=\"300\" button_type=\"btn-default\" title_color=\"#ec6451\" icon_title=\"ion-ios-lightbulb-outline\" icon_size=\"38px\" icon_color=\"#ec6451\" icon_color_hover=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".marketing\" icon_width=\"52px\" icon_heigth=\"52px\" title_color_hover=\"#ffffff\" box_bg_hover=\"#ec6451\" box_padding=\"70px 30px\" content_color=\"#ffffff\" content_color_hover=\"#ffffff\" link_show_more=\"#\" read_more=\".more\" read_btn=\"1\" button_size=\"btn-xs\" box_margin=\"0 0 -15px\" show_icon_link=\"\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-line-chart\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque et cursus ante.[/cshero-fancy-box][vc_empty_space height=\"14px\"][vc_separator color=\"custom\" border_width=\"4\" align=\"center\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#ec6451\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_right_middle\" lax_layer2_align=\"lax_left_bottom\" lax_layer3_align=\"lax_right_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_right_bottom\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"bottom\" css=\".vc_custom_1433330547783{padding-top: 80px !important;padding-bottom: 0px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" same_height=\"false\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#00accb\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".strategy\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-heart\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" title_color_hover=\"#008db5\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-display1\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#9edd7f\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa-thumbs-o-up\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" title_color_hover=\"#8fc972\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-gleam\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#fedc54\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-send\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" title_color_hover=\"#f2cc4f\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-paint\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#ec6451\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".development\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" title_color_hover=\"#db604a\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-notebook\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#71cff7\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#ffffff\" engle_duplicated_border_color=\"#71cff7\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#13151c\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#13151c\" enable_parallax=\"1\" parallax_speed=\"0.1\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_right_middle\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_bottom\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_right_bottom\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"bottom\" css=\".vc_custom_1433250879661{padding-top: 80px !important;padding-bottom: 80px !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\" dt_id=\"solutions\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer6_position_y=\"-150px\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" arrow_color=\"#13151c\" el_id=\"\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title=\".strategy\" icon_width=\"65px\" icon_heigth=\"65px\" height_image=\"65\" content_color=\"#222222\" border_color=\"#00accb\" border_color_hover=\"#008db5\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#00accb\" icon_bg_color_hover=\"#008db5\" image=\"3214\" image_hover=\"3214\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".branding\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#9edd7f\" border_color_hover=\"#8fc972\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#9edd7f\" icon_bg_color_hover=\"#8fc972\" image=\"3216\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".design\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#fedc54\" border_color_hover=\"#f2cc4f\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#fedc54\" icon_bg_color_hover=\"#f2cc4f\" image=\"3215\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h2\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout4\" icon_hover_style=\"style-2\" icon_animate_type=\"none\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"34px\" icon_color=\"#ffffff\" title_margin=\"10px 0 10px\" title=\".analysis\" icon_width=\"80px\" icon_heigth=\"80px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" border_color=\"#ec6451\" border_color_hover=\"#db604a\" border_radius=\"5px\" border_width=\"2px\" icon_bg_color=\"#ec6451\" icon_bg_color_hover=\"#db604a\" image=\"3217\" icon_type=\"fontawesome\"]Aenean suscipit libero mauris, ac blandit urna laoreet non.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433993782096{padding-top: 20px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-hammer\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-hammer\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Development\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/2\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_pe7stroke=\"pe-7s-user\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][vc_empty_space height=\"36px\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-left\" icon_type=\"pe7stroke\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"pe-7s-user\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout5\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"65\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn-primary\" button_size=\"btn-xs\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title_color=\"#13151c\" icon_size=\"52px\" icon_color=\"#ec6451\" title_margin=\"0 0 10px\" title=\"Design\" icon_width=\"60px\" icon_heigth=\"60px\" link_show_more=\"#\" height_image=\"65\" content_color=\"#222222\" icon_title=\"fa fa-lightbulb-o\" title_color_hover=\"#13151c\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris. Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" exo_same_height=\"no\" el_class=\"font-size-25\" css=\".vc_custom_1434362037076{padding-top: 40px !important;padding-bottom: 100px !important;}\" enable_curve=\"\" curve_height=\"60px\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\" font_color=\"#13151c\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Mortgages\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3295\" link_show_more=\"#\" imgage_border_bottom_color=\"#00accd\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Financial Planning\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3296\" link_show_more=\"#\" imgage_border_bottom_color=\"#9cde7a\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Pensions\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3297\" link_show_more=\"#\" imgage_border_bottom_color=\"#ffdd45\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-fancy-box heading_size=\"h3\" title_transform=\"inherit\" title_font_weight=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"More details\" read_more_margin=\"\" read_btn=\"1\" button_type=\"btn-primary\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"Investments\" title_color=\"#222222\" title_margin=\"20px 0 15px 0\" image=\"3298\" link_show_more=\"#\" imgage_border_bottom_color=\"#f16246\"]Aenean suscipit libero mauris, ac blandit urna laoreet non. Praesent diam urna suscipit libero mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "FANCY ICON BOXES", "", "inherit", "open", "open", "", "3201-revision-v1", "", "", "2015-06-15 09:54:19", "2015-06-15 09:54:19", "", "3201", "http://localhost/mdeal2/?p=14389", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14429", "1", "2015-06-16 02:56:52", "2015-06-16 02:56:52", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.june\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 02:56:52", "2015-06-16 02:56:52", "", "14351", "http://localhost/mdeal2/?p=14429", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14430", "1", "2015-06-16 02:58:33", "2015-06-16 02:58:33", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.june\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 02:58:33", "2015-06-16 02:58:33", "", "14351", "http://localhost/mdeal2/?p=14430", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14431", "1", "2015-06-16 02:58:48", "2015-06-16 02:58:48", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 02:58:48", "2015-06-16 02:58:48", "", "14351", "http://localhost/mdeal2/?p=14431", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14433", "1", "2015-06-16 03:08:30", "2015-06-16 03:08:30", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"12\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" filter=\"1\" filter_align=\"text-left\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 90px 0\" pagination=\"0\" pagination_type=\"default\" item_content_align=\"text-left\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" link_type=\"icon\" read_more=\"1\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:08:30", "2015-06-16 03:08:30", "", "14351", "http://localhost/mdeal2/?p=14433", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14432", "1", "2015-06-16 03:01:30", "2015-06-16 03:01:30", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"12\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" filter=\"1\" filter_align=\"text-left\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 90px 0\" pagination=\"0\" pagination_type=\"default\" item_content_align=\"text-left\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"icon\" read_more=\"1\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:01:30", "2015-06-16 03:01:30", "", "14351", "http://localhost/mdeal2/?p=14432", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14434", "1", "2015-06-16 09:36:14", "2015-06-16 09:36:14", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-autosave-v1", "", "", "2015-06-16 09:36:14", "2015-06-16 09:36:14", "", "14351", "http://localhost/mdeal2/?p=14434", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14440", "1", "2015-06-16 03:20:09", "2015-06-16 03:20:09", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"8\" posts_per_page=\"8\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" filter=\"1\" filter_align=\"text-left\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 90px 0\" pagination=\"0\" pagination_type=\"default\" item_content_align=\"text-left\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" link_type=\"icon\" read_more=\"1\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:20:09", "2015-06-16 03:20:09", "", "14351", "http://localhost/mdeal2/?p=14440", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14436", "1", "2015-06-16 03:12:58", "2015-06-16 03:12:58", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:12:58", "2015-06-16 03:12:58", "", "14351", "http://localhost/mdeal2/?p=14436", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14435", "1", "2015-06-16 03:09:41", "2015-06-16 03:09:41", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:09:41", "2015-06-16 03:09:41", "", "14351", "http://localhost/mdeal2/?p=14435", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14438", "1", "2015-06-16 03:18:54", "2015-06-16 03:18:54", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:18:54", "2015-06-16 03:18:54", "", "14351", "http://localhost/mdeal2/?p=14438", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14437", "1", "2015-06-16 03:14:15", "2015-06-16 03:14:15", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"12\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" filter=\"1\" filter_align=\"text-left\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 90px 0\" pagination=\"0\" pagination_type=\"default\" item_content_align=\"text-left\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" link_type=\"icon\" read_more=\"1\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" category=\"8,9,6,7,50\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:14:15", "2015-06-16 03:14:15", "", "14351", "http://localhost/mdeal2/?p=14437", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14439", "1", "2015-06-16 03:19:30", "2015-06-16 03:19:30", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"8\" posts_per_page=\"8\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" filter=\"1\" filter_align=\"text-left\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 90px 0\" pagination=\"0\" pagination_type=\"default\" item_content_align=\"text-left\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" link_type=\"icon\" read_more=\"1\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:19:30", "2015-06-16 03:19:30", "", "14351", "http://localhost/mdeal2/?p=14439", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14445", "1", "2015-06-16 03:31:05", "2015-06-16 03:31:05", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:31:05", "2015-06-16 03:31:05", "", "14351", "http://localhost/mdeal2/?p=14445", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14442", "1", "2015-06-16 03:21:56", "2015-06-16 03:21:56", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:21:56", "2015-06-16 03:21:56", "", "14351", "http://localhost/mdeal2/?p=14442", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14441", "1", "2015-06-16 03:21:21", "2015-06-16 03:21:21", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:21:21", "2015-06-16 03:21:21", "", "14351", "http://localhost/mdeal2/?p=14441", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14443", "1", "2015-06-16 03:22:56", "2015-06-16 03:22:56", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"10\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:22:56", "2015-06-16 03:22:56", "", "14351", "http://localhost/mdeal2/?p=14443", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14444", "1", "2015-06-16 03:28:14", "2015-06-16 03:28:14", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"10\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:28:14", "2015-06-16 03:28:14", "", "14351", "http://localhost/mdeal2/?p=14444", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14446", "1", "2015-06-16 03:31:37", "2015-06-16 03:31:37", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"80px\"][cshero-portfolio items_display=\"12\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" filter=\"1\" filter_align=\"text-left\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 90px 0\" pagination=\"0\" pagination_type=\"default\" item_content_align=\"text-left\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" link_type=\"icon\" read_more=\"1\" read_more_text=\"Read more\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Large Image\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:31:37", "2015-06-16 03:31:37", "", "14351", "http://localhost/mdeal2/?p=14446", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14453", "1", "2015-06-16 03:57:21", "2015-06-16 03:57:21", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:57:21", "2015-06-16 03:57:21", "", "14351", "http://localhost/mdeal2/?p=14453", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14447", "1", "2015-06-16 03:34:39", "2015-06-16 03:34:39", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"15\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:34:39", "2015-06-16 03:34:39", "", "14351", "http://localhost/mdeal2/?p=14447", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14448", "1", "2015-06-16 03:35:26", "2015-06-16 03:35:26", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"15\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:35:26", "2015-06-16 03:35:26", "", "14351", "http://localhost/mdeal2/?p=14448", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14449", "1", "2015-06-16 03:36:18", "2015-06-16 03:36:18", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"150\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:36:18", "2015-06-16 03:36:18", "", "14351", "http://localhost/mdeal2/?p=14449", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14450", "1", "2015-06-16 03:36:36", "2015-06-16 03:36:36", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"150\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:36:36", "2015-06-16 03:36:36", "", "14351", "http://localhost/mdeal2/?p=14450", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14451", "1", "2015-06-16 03:37:53", "2015-06-16 03:37:53", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"150\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:37:53", "2015-06-16 03:37:53", "", "14351", "http://localhost/mdeal2/?p=14451", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14452", "1", "2015-06-16 03:44:43", "2015-06-16 03:44:43", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"150\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:44:43", "2015-06-16 03:44:43", "", "14351", "http://localhost/mdeal2/?p=14452", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14454", "1", "2015-06-16 03:58:26", "2015-06-16 03:58:26", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"150\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:58:26", "2015-06-16 03:58:26", "", "14351", "http://localhost/mdeal2/?p=14454", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14455", "1", "2015-06-16 03:58:57", "2015-06-16 03:58:57", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"150\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 03:58:57", "2015-06-16 03:58:57", "", "14351", "http://localhost/mdeal2/?p=14455", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14456", "1", "2015-06-16 04:03:55", "2015-06-16 04:03:55", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"150\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:03:55", "2015-06-16 04:03:55", "", "14351", "http://localhost/mdeal2/?p=14456", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14457", "1", "2015-06-16 04:04:34", "2015-06-16 04:04:34", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:04:34", "2015-06-16 04:04:34", "", "14351", "http://localhost/mdeal2/?p=14457", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14458", "1", "2015-06-16 04:14:05", "2015-06-16 04:14:05", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:14:05", "2015-06-16 04:14:05", "", "14351", "http://localhost/mdeal2/?p=14458", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14459", "1", "2015-06-16 04:14:32", "2015-06-16 04:14:32", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"10\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:14:32", "2015-06-16 04:14:32", "", "14351", "http://localhost/mdeal2/?p=14459", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14460", "1", "2015-06-16 04:15:12", "2015-06-16 04:15:12", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 2\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:15:12", "2015-06-16 04:15:12", "", "14351", "http://localhost/mdeal2/?p=14460", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14461", "1", "2015-06-16 04:33:34", "2015-06-16 04:33:34", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:33:34", "2015-06-16 04:33:34", "", "14351", "http://localhost/mdeal2/?p=14461", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14462", "1", "2015-06-16 04:35:24", "2015-06-16 04:35:24", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 04:35:24", "2015-06-16 04:35:24", "", "14351", "http://localhost/mdeal2/?p=14462", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14463", "1", "2015-06-16 07:08:57", "2015-06-16 07:08:57", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 07:08:57", "2015-06-16 07:08:57", "", "14351", "http://localhost/mdeal2/?p=14463", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14464", "1", "2015-06-16 07:11:08", "2015-06-16 07:11:08", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 07:11:08", "2015-06-16 07:11:08", "", "14351", "http://localhost/mdeal2/?p=14464", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14465", "1", "2015-06-16 07:35:02", "2015-06-16 07:35:02", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 07:35:02", "2015-06-16 07:35:02", "", "14351", "http://localhost/mdeal2/?p=14465", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14466", "1", "2015-06-16 07:35:42", "2015-06-16 07:35:42", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 07:35:42", "2015-06-16 07:35:42", "", "14351", "http://localhost/mdeal2/?p=14466", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14467", "1", "2015-06-16 07:39:08", "2015-06-16 07:39:08", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 07:39:08", "2015-06-16 07:39:08", "", "14351", "http://localhost/mdeal2/?p=14467", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14468", "1", "2015-06-16 07:53:20", "2015-06-16 07:53:20", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 07:53:20", "2015-06-16 07:53:20", "", "14351", "http://localhost/mdeal2/?p=14468", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14469", "1", "2015-06-16 08:14:34", "2015-06-16 08:14:34", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "The Note Book", "", "publish", "open", "open", "", "the-note-book", "", "", "2015-06-16 08:18:03", "2015-06-16 08:18:03", "", "0", "http://localhost/mdeal2/?post_type=portfolio&#038;p=14469", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("14471", "1", "2015-06-16 08:17:59", "2015-06-16 08:17:59", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "The Tag Idea", "", "publish", "open", "open", "", "the-tag-idea", "", "", "2015-06-18 07:20:45", "2015-06-18 07:20:45", "", "0", "http://localhost/mdeal2/?post_type=portfolio&#038;p=14471", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("14473", "1", "2015-06-16 08:19:17", "2015-06-16 08:19:17", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 08:19:17", "2015-06-16 08:19:17", "", "14351", "http://localhost/mdeal2/?p=14473", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14474", "1", "2015-06-16 08:20:38", "2015-06-16 08:20:38", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Business Card Idea", "", "publish", "open", "open", "", "business-card-idea", "", "", "2015-06-16 08:20:38", "2015-06-16 08:20:38", "", "0", "http://localhost/mdeal2/?post_type=portfolio&#038;p=14474", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("14476", "1", "2015-06-16 08:22:59", "2015-06-16 08:22:59", "[vc_row][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin tempus luctus lacus et finibus. Curabitur sed elit non sem consectetur vulputate. In faucibus enim eu quam dictum, quis ultrices magna vulputate. Mauris id eleifend tortor, ac imperdiet orci. Sed nec lacinia libero, lacinia consectetur ex. In hac habitasse platea dictumst. Donec aliquam mi vitae est molestie ornare ultricies non magna.\r\n\r\nCras sem risus, pellentesque sed cursus id, placerat ut eros. Suspendisse potenti. Vestibulum a tincidunt lacus, vel venenatis libero. Donec consectetur non velit quis facilisis. Duis vel urna porttitor, mollis arcu vel, ultrices sapien. Suspendisse ac lorem nisi. Suspendisse ultrices augue vitae sem maximus eleifend. Ut quis ligula vitae leo elementum sagittis. Duis id imperdiet risus. Proin sit amet augue sagittis mi tincidunt dictum.\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Product Boxes", "", "publish", "open", "open", "", "product-boxes", "", "", "2015-06-16 08:22:59", "2015-06-16 08:22:59", "", "0", "http://localhost/mdeal2/?post_type=portfolio&#038;p=14476", "0", "portfolio", "", "0");
INSERT INTO `wp_posts` VALUES("14479", "1", "2015-06-16 08:40:11", "2015-06-16 08:40:11", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 08:40:11", "2015-06-16 08:40:11", "", "14351", "http://localhost/mdeal2/?p=14479", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14483", "1", "2015-06-16 09:01:40", "2015-06-16 09:01:40", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\r\n\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:01:40", "2015-06-16 09:01:40", "", "14351", "http://localhost/mdeal2/?p=14483", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14484", "1", "2015-06-16 09:21:58", "2015-06-16 09:21:58", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\r\n\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:21:58", "2015-06-16 09:21:58", "", "14351", "http://localhost/mdeal2/?p=14484", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14485", "1", "2015-06-16 09:23:52", "2015-06-16 09:23:52", "", "corp-ipadperspective", "", "inherit", "open", "open", "", "corp-ipadperspective", "", "", "2015-06-16 09:23:52", "2015-06-16 09:23:52", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp-ipadperspective.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14491", "1", "2015-06-16 09:34:39", "2015-06-16 09:34:39", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:34:39", "2015-06-16 09:34:39", "", "14351", "http://localhost/mdeal2/?p=14491", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14487", "1", "2015-06-16 09:26:14", "2015-06-16 09:26:14", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\r\n\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:26:14", "2015-06-16 09:26:14", "", "14351", "http://localhost/mdeal2/?p=14487", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14488", "1", "2015-06-16 09:28:50", "2015-06-16 09:28:50", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\r\n\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:28:50", "2015-06-16 09:28:50", "", "14351", "http://localhost/mdeal2/?p=14488", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14490", "1", "2015-06-16 09:34:12", "2015-06-16 09:34:12", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_column_text]\r\n<div class=\"cms-custom-headding-title\" style=\"font-family: Lato; font-size: 18px; color: #222222; font-style: normal; font-weight: bold; line-height: 18px; text-align: center;\">Portfolio Style Dexter</div>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:34:12", "2015-06-16 09:34:12", "", "14351", "http://localhost/mdeal2/?p=14490", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14489", "1", "2015-06-16 09:32:22", "2015-06-16 09:32:22", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:32:22", "2015-06-16 09:32:22", "", "14351", "http://localhost/mdeal2/?p=14489", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14493", "1", "2015-06-16 09:37:49", "2015-06-16 09:37:49", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"60px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:37:49", "2015-06-16 09:37:49", "", "14351", "http://localhost/mdeal2/?p=14493", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14492", "1", "2015-06-16 09:35:09", "2015-06-16 09:35:09", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style 1\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-16 09:35:09", "2015-06-16 09:35:09", "", "14351", "http://localhost/mdeal2/?p=14492", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14497", "1", "2015-06-16 09:49:23", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-16 09:49:23", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?p=14497", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("14498", "1", "2015-06-16 09:51:09", "2015-06-16 09:51:09", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327754114{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search-plus\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327765869{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327780727{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327793408{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-adjust\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "publish", "open", "open", "", "post-carousel", "", "", "2015-07-14 07:54:19", "2015-07-14 07:54:19", "", "0", "http://localhost/mdeal2/?page_id=14498", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("14499", "1", "2015-06-16 09:51:09", "2015-06-16 09:51:09", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.default\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-16 09:51:09", "2015-06-16 09:51:09", "", "14498", "http://localhost/mdeal2/?p=14499", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14501", "1", "2015-06-16 09:58:20", "2015-06-16 09:58:20", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-16 09:58:20", "2015-06-16 09:58:20", "", "14498", "http://localhost/mdeal2/?p=14501", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14533", "1", "2015-06-16 14:19:10", "2015-06-16 14:19:10", "", "man21", "", "inherit", "open", "open", "", "man21", "", "", "2015-06-16 14:19:10", "2015-06-16 14:19:10", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/man211.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14534", "1", "2015-06-16 14:19:31", "2015-06-16 14:19:31", "", "man11", "", "inherit", "open", "open", "", "man11", "", "", "2015-06-16 14:19:31", "2015-06-16 14:19:31", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/man111.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("14551", "1", "2015-06-26 14:10:17", "2015-06-26 14:10:17", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327754114{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search-plus\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327765869{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327780727{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327793408{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-autosave-v1", "", "", "2015-06-26 14:10:17", "2015-06-26 14:10:17", "", "14498", "http://localhost/mdeal2/?p=14551", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14552", "1", "2015-06-17 01:33:30", "2015-06-17 01:33:30", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 01:33:30", "2015-06-17 01:33:30", "", "14498", "http://localhost/mdeal2/?p=14552", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14553", "1", "2015-06-17 01:34:07", "2015-06-17 01:34:07", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16,14\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 01:34:07", "2015-06-17 01:34:07", "", "14498", "http://localhost/mdeal2/?p=14553", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14554", "1", "2015-06-17 01:35:03", "2015-06-17 01:35:03", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 01:35:03", "2015-06-17 01:35:03", "", "14498", "http://localhost/mdeal2/?p=14554", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14555", "1", "2015-06-17 01:46:18", "2015-06-17 01:46:18", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"left\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 01:46:18", "2015-06-17 01:46:18", "", "14498", "http://localhost/mdeal2/?p=14555", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14556", "1", "2015-06-17 01:47:23", "2015-06-17 01:47:23", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 01:47:23", "2015-06-17 01:47:23", "", "14498", "http://localhost/mdeal2/?p=14556", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14557", "1", "2015-06-17 02:01:07", "2015-06-17 02:01:07", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:01:07", "2015-06-17 02:01:07", "", "14498", "http://localhost/mdeal2/?p=14557", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14558", "1", "2015-06-17 02:01:42", "2015-06-17 02:01:42", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:01:42", "2015-06-17 02:01:42", "", "14498", "http://localhost/mdeal2/?p=14558", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14559", "1", "2015-06-17 02:05:15", "2015-06-17 02:05:15", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:05:15", "2015-06-17 02:05:15", "", "14498", "http://localhost/mdeal2/?p=14559", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14560", "1", "2015-06-17 02:06:27", "2015-06-17 02:06:27", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:06:27", "2015-06-17 02:06:27", "", "14498", "http://localhost/mdeal2/?p=14560", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14561", "1", "2015-06-17 02:10:52", "2015-06-17 02:10:52", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:10:52", "2015-06-17 02:10:52", "", "14498", "http://localhost/mdeal2/?p=14561", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14562", "1", "2015-06-17 02:11:30", "2015-06-17 02:11:30", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:11:30", "2015-06-17 02:11:30", "", "14498", "http://localhost/mdeal2/?p=14562", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14563", "1", "2015-06-17 02:12:37", "2015-06-17 02:12:37", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\" cms_custom_headding=\"\" line_color=\"\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:12:37", "2015-06-17 02:12:37", "", "14498", "http://localhost/mdeal2/?p=14563", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14565", "1", "2015-06-17 02:18:27", "2015-06-17 02:18:27", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:18:27", "2015-06-17 02:18:27", "", "14498", "http://localhost/mdeal2/?p=14565", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14564", "1", "2015-06-17 02:15:39", "2015-06-17 02:15:39", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:15:39", "2015-06-17 02:15:39", "", "14498", "http://localhost/mdeal2/?p=14564", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14566", "1", "2015-06-17 02:25:56", "2015-06-17 02:25:56", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"pe-7s-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:25:56", "2015-06-17 02:25:56", "", "14498", "http://localhost/mdeal2/?p=14566", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14567", "1", "2015-06-17 02:29:55", "2015-06-17 02:29:55", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:29:55", "2015-06-17 02:29:55", "", "14498", "http://localhost/mdeal2/?p=14567", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14568", "1", "2015-06-17 02:36:54", "2015-06-17 02:36:54", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:36:54", "2015-06-17 02:36:54", "", "14498", "http://localhost/mdeal2/?p=14568", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14569", "1", "2015-06-17 02:38:36", "2015-06-17 02:38:36", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:38:36", "2015-06-17 02:38:36", "", "14498", "http://localhost/mdeal2/?p=14569", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14570", "1", "2015-06-17 02:39:21", "2015-06-17 02:39:21", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:39:21", "2015-06-17 02:39:21", "", "14498", "http://localhost/mdeal2/?p=14570", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14571", "1", "2015-06-17 02:44:31", "2015-06-17 02:44:31", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:44:31", "2015-06-17 02:44:31", "", "14498", "http://localhost/mdeal2/?p=14571", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14572", "1", "2015-06-17 02:49:58", "2015-06-17 02:49:58", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:49:58", "2015-06-17 02:49:58", "", "14498", "http://localhost/mdeal2/?p=14572", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14573", "1", "2015-06-17 02:52:58", "2015-06-17 02:52:58", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 02:52:58", "2015-06-17 02:52:58", "", "14498", "http://localhost/mdeal2/?p=14573", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14574", "1", "2015-06-17 03:01:55", "2015-06-17 03:01:55", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:01:55", "2015-06-17 03:01:55", "", "14498", "http://localhost/mdeal2/?p=14574", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14575", "1", "2015-06-17 03:10:39", "2015-06-17 03:10:39", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:10:39", "2015-06-17 03:10:39", "", "14498", "http://localhost/mdeal2/?p=14575", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14576", "1", "2015-06-17 03:11:40", "2015-06-17 03:11:40", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:11:40", "2015-06-17 03:11:40", "", "14498", "http://localhost/mdeal2/?p=14576", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14577", "1", "2015-06-17 03:15:50", "2015-06-17 03:15:50", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:15:50", "2015-06-17 03:15:50", "", "14498", "http://localhost/mdeal2/?p=14577", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14578", "1", "2015-06-17 03:17:23", "2015-06-17 03:17:23", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:17:23", "2015-06-17 03:17:23", "", "14498", "http://localhost/mdeal2/?p=14578", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14579", "1", "2015-06-17 03:21:52", "2015-06-17 03:21:52", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:21:52", "2015-06-17 03:21:52", "", "14498", "http://localhost/mdeal2/?p=14579", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14580", "1", "2015-06-17 03:23:11", "2015-06-17 03:23:11", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:23:11", "2015-06-17 03:23:11", "", "14498", "http://localhost/mdeal2/?p=14580", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14581", "1", "2015-06-17 03:24:34", "2015-06-17 03:24:34", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:24:34", "2015-06-17 03:24:34", "", "14498", "http://localhost/mdeal2/?p=14581", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14582", "1", "2015-06-17 03:37:24", "2015-06-17 03:37:24", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:37:24", "2015-06-17 03:37:24", "", "14498", "http://localhost/mdeal2/?p=14582", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14583", "1", "2015-06-17 03:45:42", "2015-06-17 03:45:42", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:45:42", "2015-06-17 03:45:42", "", "14498", "http://localhost/mdeal2/?p=14583", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15554", "1", "2015-06-26 14:10:30", "2015-06-26 14:10:30", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327754114{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search-plus\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327765869{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327780727{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327793408{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-26 14:10:30", "2015-06-26 14:10:30", "", "14498", "http://localhost/mdeal2/?p=15554", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14722", "1", "2015-06-18 02:28:11", "2015-06-18 02:28:11", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-18 02:28:11", "2015-06-18 02:28:11", "", "14498", "http://localhost/mdeal2/?p=14722", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14584", "1", "2015-06-17 03:52:09", "2015-06-17 03:52:09", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"1\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:52:09", "2015-06-17 03:52:09", "", "14498", "http://localhost/mdeal2/?p=14584", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14585", "1", "2015-06-17 03:53:39", "2015-06-17 03:53:39", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"1\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:53:39", "2015-06-17 03:53:39", "", "14498", "http://localhost/mdeal2/?p=14585", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14586", "1", "2015-06-17 03:57:04", "2015-06-17 03:57:04", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"1\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 03:57:04", "2015-06-17 03:57:04", "", "14498", "http://localhost/mdeal2/?p=14586", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14587", "1", "2015-06-17 04:08:35", "2015-06-17 04:08:35", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-17 04:08:35", "2015-06-17 04:08:35", "", "14498", "http://localhost/mdeal2/?p=14587", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14591", "1", "2015-06-17 08:17:33", "2015-06-17 08:17:33", "[vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Default\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio heading_align=\"text-left\" heading_text_style=\"none\" items_display=\"6\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.layout1\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"1\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"1\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Lily\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.lily\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_color=\"#ffffff\" description_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Sadie\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.sadie\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Oscar\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.oscar\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Marlay\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.marley\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Ruby\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.ruby\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-center\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Roxy\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.roxy\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Dexter\" font_container=\"tag:h5|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"60px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.dexter\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-left\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"25\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"Portfolio Style Milo\" font_container=\"tag:div|font_size:18px|text_align:center|color:%23222222|line_height:18px\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_empty_space height=\"40px\"][cshero-portfolio items_display=\"3\" posts_per_page=\"20\" orderby=\"none\" order=\"none\" type=\"grid\" layout=\"portfolio.milo\" columns=\"3\" filter=\"0\" filter_align=\"text-center\" filter_btn=\"btn btn-default\" filter_btn_size=\"btn btn-default\" filter_margin=\"0 0 50px 0\" pagination=\"0\" pagination_type=\"number\" item_content_align=\"text-right\" crop_image=\"1\" show_title=\"1\" title_color=\"#ffffff\" show_category=\"0\" show_description=\"1\" excerpt_length=\"50\" description_color=\"#ffffff\" link_type=\"button\" read_more=\"0\" read_more_text=\"More\" read_more_icon=\"fa fa-link\" zoom=\"0\" zoom_text=\"Zoom\" zoom_icon=\"fa fa-search\" view_all_button_type=\"btn btn-default\" heading_align=\"text-left\" heading_text_style=\"none\" item_link_color=\"#ffffff\" item_link_hover_color=\"#ffffff\" show_link=\"1\" link_text=\"Launch Project\" link_icon=\"fa fa-external-link\" category=\"6,8,9,7,50\" item_margin=\"0\" width_image=\"650\" height_image=\"450\" category_color=\"#ffffff\" title_size=\"h5\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row]", "Portfolio", "", "inherit", "open", "open", "", "14351-revision-v1", "", "", "2015-06-17 08:17:33", "2015-06-17 08:17:33", "", "14351", "http://localhost/mdeal2/?p=14591", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17288", "1", "2015-11-23 09:28:29", "2015-11-23 09:28:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:28:29", "2015-11-23 09:28:29", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14721", "1", "2015-06-18 02:27:29", "2015-06-18 02:27:29", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(221,51,51,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-18 02:27:29", "2015-06-18 02:27:29", "", "14498", "http://localhost/mdeal2/?p=14721", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14723", "1", "2015-06-18 02:42:05", "2015-06-18 02:42:05", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search-plus\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-18 02:42:05", "2015-06-18 02:42:05", "", "14498", "http://localhost/mdeal2/?p=14723", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14733", "1", "2015-06-18 09:19:12", "2015-06-18 09:19:12", "", "purplecity", "", "inherit", "open", "open", "", "purplecity", "", "", "2015-06-18 09:19:12", "2015-06-18 09:19:12", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/purplecity.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14767", "1", "2015-06-18 15:26:56", "2015-06-18 15:26:56", "", "purplehearts", "", "inherit", "open", "open", "", "purplehearts", "", "", "2015-06-18 15:26:56", "2015-06-18 15:26:56", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/purplehearts.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17704", "1", "2016-01-11 14:18:32", "2016-01-11 14:18:32", "", "slide-11", "", "inherit", "open", "open", "", "slide-11", "", "", "2016-01-11 14:18:32", "2016-01-11 14:18:32", "", "0", "http://localhost/mdeal2/wp-content/uploads/2016/01/slide-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17643", "1", "2015-12-25 13:54:35", "2015-12-25 13:54:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-25 13:54:35", "2015-12-25 13:54:35", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17646", "1", "2015-12-27 15:57:22", "2015-12-27 15:57:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-27 15:57:22", "2015-12-27 15:57:22", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17647", "1", "2015-12-27 15:58:40", "2015-12-27 15:58:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 15:58:40", "2015-12-27 15:58:40", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17648", "1", "2015-12-27 16:01:37", "2015-12-27 16:01:37", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 16:01:37", "2015-12-27 16:01:37", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17649", "1", "2015-12-27 16:02:39", "2015-12-27 16:02:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 16:02:39", "2015-12-27 16:02:39", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17650", "1", "2015-12-27 16:09:22", "2015-12-27 16:09:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 16:09:22", "2015-12-27 16:09:22", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17651", "1", "2015-12-27 16:10:15", "2015-12-27 16:10:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 16:10:15", "2015-12-27 16:10:15", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14879", "1", "2015-06-19 09:04:23", "2015-06-19 09:04:23", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:04:23", "2015-06-19 09:04:23", "", "3051", "http://localhost/mdeal2/?p=14879", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14881", "1", "2015-06-19 09:08:17", "2015-06-19 09:08:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:08:17", "2015-06-19 09:08:17", "", "3051", "http://localhost/mdeal2/?p=14881", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14883", "1", "2015-06-19 09:14:33", "2015-06-19 09:14:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:14:33", "2015-06-19 09:14:33", "", "3051", "http://localhost/mdeal2/?p=14883", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14882", "1", "2015-06-19 09:09:59", "2015-06-19 09:09:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:09:59", "2015-06-19 09:09:59", "", "3051", "http://localhost/mdeal2/?p=14882", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14884", "1", "2015-06-19 09:14:58", "2015-06-19 09:14:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:14:58", "2015-06-19 09:14:58", "", "3051", "http://localhost/mdeal2/?p=14884", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14885", "1", "2015-06-19 09:21:00", "2015-06-19 09:21:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:21:00", "2015-06-19 09:21:00", "", "3051", "http://localhost/mdeal2/?p=14885", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14886", "1", "2015-06-19 09:23:26", "2015-06-19 09:23:26", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246944028{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705714414{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-19 09:23:26", "2015-06-19 09:23:26", "", "3051", "http://localhost/mdeal2/?p=14886", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("14905", "1", "2015-12-29 14:27:42", "2015-12-29 14:27:42", "<p>[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]</p>\n<div class=\"big-title text-center\">\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\n</div>\n<p>&nbsp;</p>\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1451399240817{padding-bottom: 40px !important;}\" exo_same_height=\"no\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]</p>\n", "Progress Bars", "", "inherit", "open", "open", "", "14279-autosave-v1", "", "", "2015-12-29 14:27:42", "2015-12-29 14:27:42", "", "14279", "http://localhost/mdeal2/?p=14905", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17662", "1", "2015-12-28 15:41:05", "2015-12-28 15:41:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:41:05", "2015-12-28 15:41:05", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17287", "1", "2015-11-23 09:26:55", "2015-11-23 09:26:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:26:55", "2015-11-23 09:26:55", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17289", "1", "2015-11-26 10:23:15", "2015-11-26 10:23:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:23:15", "2015-11-26 10:23:15", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15159", "1", "2015-06-23 08:39:57", "2015-06-23 08:39:57", "", "corpabout", "", "inherit", "open", "open", "", "corpabout", "", "", "2015-06-23 08:39:57", "2015-06-23 08:39:57", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/corpabout.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("14985", "1", "2015-06-20 04:18:01", "2015-06-20 04:18:01", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][/vc_column][/vc_row]", "Blog", "", "inherit", "open", "open", "", "18-autosave-v1", "", "", "2015-06-20 04:18:01", "2015-06-20 04:18:01", "", "18", "http://localhost/mdeal2/?p=14985", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15000", "1", "2015-06-20 02:49:33", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-20 02:49:33", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=15000", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15004", "1", "2015-06-20 03:15:24", "2015-06-20 03:15:24", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Ming WuTang", "", "publish", "closed", "closed", "", "sean-redfearn", "", "", "2015-06-22 11:27:08", "2015-06-22 11:27:08", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15004", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15005", "1", "2015-06-20 03:15:07", "2015-06-20 03:15:07", "", "team1", "", "inherit", "open", "open", "", "team1-3", "", "", "2015-06-20 03:15:07", "2015-06-20 03:15:07", "", "15004", "http://localhost/mdeal2/wp-content/uploads/2015/06/team1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15006", "1", "2015-06-20 03:15:08", "2015-06-20 03:15:08", "", "team2", "", "inherit", "open", "open", "", "team2-2", "", "", "2015-06-20 03:15:08", "2015-06-20 03:15:08", "", "15004", "http://localhost/mdeal2/wp-content/uploads/2015/06/team2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15007", "1", "2015-06-20 03:15:08", "2015-06-20 03:15:08", "", "team3", "", "inherit", "open", "open", "", "team3", "", "", "2015-06-20 03:15:08", "2015-06-20 03:15:08", "", "15004", "http://localhost/mdeal2/wp-content/uploads/2015/06/team3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15008", "1", "2015-06-20 03:15:09", "2015-06-20 03:15:09", "", "team4", "", "inherit", "open", "open", "", "team4", "", "", "2015-06-20 03:15:09", "2015-06-20 03:15:09", "", "15004", "http://localhost/mdeal2/wp-content/uploads/2015/06/team4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15009", "1", "2015-06-20 03:15:09", "2015-06-20 03:15:09", "", "team5", "", "inherit", "open", "open", "", "team5", "", "", "2015-06-20 03:15:09", "2015-06-20 03:15:09", "", "15004", "http://localhost/mdeal2/wp-content/uploads/2015/06/team5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15010", "1", "2015-06-20 03:15:10", "2015-06-20 03:15:10", "", "team6", "", "inherit", "open", "open", "", "team6", "", "", "2015-06-20 03:15:10", "2015-06-20 03:15:10", "", "15004", "http://localhost/mdeal2/wp-content/uploads/2015/06/team6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15011", "1", "2015-06-20 03:16:02", "2015-06-20 03:16:02", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Blain Johnson", "", "publish", "closed", "closed", "", "alex", "", "", "2015-06-22 11:26:00", "2015-06-22 11:26:00", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15011", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15012", "1", "2015-06-20 03:16:51", "2015-06-20 03:16:51", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Malcolm Brains", "", "publish", "open", "open", "", "sean-redfearn-2", "", "", "2015-06-22 11:25:02", "2015-06-22 11:25:02", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15012", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("17642", "1", "2015-12-24 17:21:52", "2015-12-24 17:21:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 17:21:52", "2015-12-24 17:21:52", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15014", "1", "2015-06-20 03:18:26", "2015-06-20 03:18:26", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Pappa the Rapper", "", "publish", "open", "open", "", "sean-redfearn-3", "", "", "2015-06-22 11:22:41", "2015-06-22 11:22:41", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15014", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15015", "1", "2015-06-20 03:19:05", "2015-06-20 03:19:05", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Bill Bowden", "", "publish", "closed", "closed", "", "sean-redfearn-4", "", "", "2015-06-22 11:20:16", "2015-06-22 11:20:16", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15015", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("17645", "1", "2015-12-27 15:53:05", "2015-12-27 15:53:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-27 15:53:05", "2015-12-27 15:53:05", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15037", "1", "2015-06-22 11:17:39", "2015-06-22 11:17:39", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Bill Bowden", "", "inherit", "open", "open", "", "15015-autosave-v1", "", "", "2015-06-22 11:17:39", "2015-06-22 11:17:39", "", "15015", "http://localhost/mdeal2/?p=15037", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15038", "1", "2015-06-22 11:18:04", "2015-06-22 11:18:04", "", "PC4C3613", "", "inherit", "open", "open", "", "pc4c3613", "", "", "2015-06-22 11:18:04", "2015-06-22 11:18:04", "", "15015", "http://localhost/mdeal2/wp-content/uploads/2015/06/PC4C3613.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15039", "1", "2015-06-22 11:18:06", "2015-06-22 11:18:06", "", "PC4C3603", "", "inherit", "open", "open", "", "pc4c3603", "", "", "2015-06-22 11:18:06", "2015-06-22 11:18:06", "", "15015", "http://localhost/mdeal2/wp-content/uploads/2015/06/PC4C3603.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15040", "1", "2015-06-22 11:18:08", "2015-06-22 11:18:08", "", "PC4C3649", "", "inherit", "open", "open", "", "pc4c3649", "", "", "2015-06-22 11:18:08", "2015-06-22 11:18:08", "", "15015", "http://localhost/mdeal2/wp-content/uploads/2015/06/PC4C3649.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15041", "1", "2015-06-22 11:18:10", "2015-06-22 11:18:10", "", "PC4C3594", "", "inherit", "open", "open", "", "pc4c3594", "", "", "2015-06-22 11:18:10", "2015-06-22 11:18:10", "", "15015", "http://localhost/mdeal2/wp-content/uploads/2015/06/PC4C3594.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15042", "1", "2015-06-22 11:18:11", "2015-06-22 11:18:11", "", "PC4C3625", "", "inherit", "open", "open", "", "pc4c3625", "", "", "2015-06-22 11:18:11", "2015-06-22 11:18:11", "", "15015", "http://localhost/mdeal2/wp-content/uploads/2015/06/PC4C3625.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15043", "1", "2015-06-22 11:18:16", "2015-06-22 11:18:16", "", "PC4C3568", "", "inherit", "open", "open", "", "pc4c3568", "", "", "2015-06-22 11:18:16", "2015-06-22 11:18:16", "", "15015", "http://localhost/mdeal2/wp-content/uploads/2015/06/PC4C3568.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15049", "1", "2015-06-22 13:23:11", "2015-06-22 13:23:11", "", "logo2dark", "", "inherit", "open", "open", "", "logo2dark", "", "", "2015-06-22 13:23:11", "2015-06-22 13:23:11", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/logo2dark.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("15052", "1", "2015-06-22 13:33:16", "2015-06-22 13:33:16", "", "about2", "", "inherit", "open", "open", "", "about2", "", "", "2015-06-22 13:33:16", "2015-06-22 13:33:16", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/about2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17286", "1", "2015-11-23 09:25:21", "2015-11-23 09:25:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:25:21", "2015-11-23 09:25:21", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15077", "1", "2015-06-22 14:49:00", "2015-06-22 14:49:00", "", "webdev-1", "", "inherit", "open", "open", "", "webdev-1", "", "", "2015-06-22 14:49:00", "2015-06-22 14:49:00", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/webdev-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15080", "1", "2015-06-22 14:55:59", "2015-06-22 14:55:59", "", "webdev-1", "", "inherit", "open", "open", "", "webdev-1-2", "", "", "2015-06-22 14:55:59", "2015-06-22 14:55:59", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/webdev-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15104", "1", "2015-06-22 15:50:38", "2015-06-22 15:50:38", "", "macnew", "", "inherit", "open", "open", "", "macnew", "", "", "2015-06-22 15:50:38", "2015-06-22 15:50:38", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/02/macnew.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15115", "1", "2015-06-22 16:15:24", "2015-06-22 16:15:24", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Joanne Saunt", "", "publish", "open", "open", "", "joanne-saunt", "", "", "2015-06-22 16:15:24", "2015-06-22 16:15:24", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15115", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15116", "1", "2015-06-22 16:14:45", "2015-06-22 16:14:45", "", "about3.1", "", "inherit", "open", "open", "", "about3-1", "", "", "2015-06-22 16:14:45", "2015-06-22 16:14:45", "", "15115", "http://localhost/mdeal2/wp-content/uploads/2015/06/about3.1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15117", "1", "2015-06-22 16:14:47", "2015-06-22 16:14:47", "", "about3.2", "", "inherit", "open", "open", "", "about3-2", "", "", "2015-06-22 16:14:47", "2015-06-22 16:14:47", "", "15115", "http://localhost/mdeal2/wp-content/uploads/2015/06/about3.2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15118", "1", "2015-06-22 16:14:49", "2015-06-22 16:14:49", "", "about3.3", "", "inherit", "open", "open", "", "about3-3", "", "", "2015-06-22 16:14:49", "2015-06-22 16:14:49", "", "15115", "http://localhost/mdeal2/wp-content/uploads/2015/06/about3.3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15119", "1", "2015-06-22 16:14:51", "2015-06-22 16:14:51", "", "about3.4", "", "inherit", "open", "open", "", "about3-4", "", "", "2015-06-22 16:14:51", "2015-06-22 16:14:51", "", "15115", "http://localhost/mdeal2/wp-content/uploads/2015/06/about3.4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15120", "1", "2015-06-22 16:14:52", "2015-06-22 16:14:52", "", "about3.5", "", "inherit", "open", "open", "", "about3-5", "", "", "2015-06-22 16:14:52", "2015-06-22 16:14:52", "", "15115", "http://localhost/mdeal2/wp-content/uploads/2015/06/about3.5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15121", "1", "2015-06-22 16:14:53", "2015-06-22 16:14:53", "", "about3.6", "", "inherit", "open", "open", "", "about3-6", "", "", "2015-06-22 16:14:53", "2015-06-22 16:14:53", "", "15115", "http://localhost/mdeal2/wp-content/uploads/2015/06/about3.6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15123", "1", "2015-06-22 16:16:21", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-22 16:16:21", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?post_type=team&p=15123", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15124", "1", "2015-06-22 16:17:32", "2015-06-22 16:17:32", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Paul Brennan", "", "publish", "open", "open", "", "paul-brennan", "", "", "2015-06-22 16:18:00", "2015-06-22 16:18:00", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15124", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15125", "1", "2015-06-22 16:18:58", "2015-06-22 16:18:58", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Bill Thompson", "", "publish", "open", "open", "", "bill-thompson", "", "", "2015-06-22 16:18:58", "2015-06-22 16:18:58", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15125", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15126", "1", "2015-06-22 16:19:58", "2015-06-22 16:19:58", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Michelle Bailey", "", "publish", "open", "open", "", "michelle-bailey", "", "", "2015-06-23 07:42:00", "2015-06-23 07:42:00", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15126", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15127", "1", "2015-06-22 16:21:12", "2015-06-22 16:21:12", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Carol Oliver", "", "publish", "open", "open", "", "carol-oliver", "", "", "2015-06-22 16:21:12", "2015-06-22 16:21:12", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15127", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15128", "1", "2015-06-22 16:22:24", "2015-06-22 16:22:24", "<h4 style=\"line-height:28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Summer Sutcliffe", "", "publish", "open", "open", "", "summer-sutcliffe", "", "", "2015-06-22 16:22:24", "2015-06-22 16:22:24", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15128", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("17697", "1", "2016-01-06 14:47:46", "2016-01-06 14:47:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1452091239833{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2016-01-06 14:47:46", "2016-01-06 14:47:46", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17698", "1", "2016-01-06 14:55:50", "2016-01-06 14:55:50", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1452091239833{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2016-01-06 14:55:50", "2016-01-06 14:55:50", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17600", "1", "2015-12-18 16:23:23", "2015-12-18 16:23:23", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:23:23", "2015-12-18 16:23:23", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17601", "1", "2015-12-18 16:29:09", "2015-12-18 16:29:09", " ", "", "", "publish", "open", "closed", "", "17601", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17601", "19", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("15155", "1", "2015-06-23 08:21:56", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-23 08:21:56", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=15155", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17285", "1", "2015-11-23 09:25:00", "2015-11-23 09:25:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-3\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:25:00", "2015-11-23 09:25:00", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15224", "1", "2015-06-23 10:31:59", "2015-06-23 10:31:59", "", "london", "", "inherit", "open", "open", "", "london", "", "", "2015-06-23 10:31:59", "2015-06-23 10:31:59", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/london.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15258", "1", "2015-06-23 14:14:08", "2015-06-23 14:14:08", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Sandra Kinder", "", "publish", "open", "open", "", "sandra-kinder", "", "", "2015-07-06 14:37:01", "2015-07-06 14:37:01", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15258", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15259", "1", "2015-06-23 14:12:06", "2015-06-23 14:12:06", "", "corp7", "", "inherit", "open", "open", "", "corp7", "", "", "2015-06-23 14:12:06", "2015-06-23 14:12:06", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp7.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15260", "1", "2015-06-23 14:12:13", "2015-06-23 14:12:13", "", "corp6", "", "inherit", "open", "open", "", "corp6", "", "", "2015-06-23 14:12:13", "2015-06-23 14:12:13", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15261", "1", "2015-06-23 14:12:23", "2015-06-23 14:12:23", "", "corp5", "", "inherit", "open", "open", "", "corp5", "", "", "2015-06-23 14:12:23", "2015-06-23 14:12:23", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15262", "1", "2015-06-23 14:12:31", "2015-06-23 14:12:31", "", "corp4", "", "inherit", "open", "open", "", "corp4", "", "", "2015-06-23 14:12:31", "2015-06-23 14:12:31", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp4.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15263", "1", "2015-06-23 14:12:35", "2015-06-23 14:12:35", "", "corp2", "", "inherit", "open", "open", "", "corp2", "", "", "2015-06-23 14:12:35", "2015-06-23 14:12:35", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15264", "1", "2015-06-23 14:12:41", "2015-06-23 14:12:41", "", "corp3", "", "inherit", "open", "open", "", "corp3", "", "", "2015-06-23 14:12:41", "2015-06-23 14:12:41", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15265", "1", "2015-06-23 14:12:46", "2015-06-23 14:12:46", "", "corp1", "", "inherit", "open", "open", "", "corp1", "", "", "2015-06-23 14:12:46", "2015-06-23 14:12:46", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15266", "1", "2015-06-23 14:12:55", "2015-06-23 14:12:55", "", "corp8", "", "inherit", "open", "open", "", "corp8", "", "", "2015-06-23 14:12:55", "2015-06-23 14:12:55", "", "15258", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp8.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15268", "1", "2015-06-23 14:16:59", "2015-06-23 14:16:59", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Paul Preston", "", "publish", "open", "open", "", "paul-preston", "", "", "2015-07-06 14:37:25", "2015-07-06 14:37:25", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15268", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15269", "1", "2015-06-23 14:19:14", "2015-06-23 14:19:14", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Johan Holmes", "", "publish", "open", "open", "", "johan-holmes", "", "", "2015-06-23 14:19:14", "2015-06-23 14:19:14", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15269", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15270", "1", "2015-06-23 14:20:07", "2015-06-23 14:20:07", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Nick Lambert", "", "publish", "open", "open", "", "nick-lambert", "", "", "2015-06-23 14:20:07", "2015-06-23 14:20:07", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15270", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15271", "1", "2015-06-23 14:21:29", "2015-06-23 14:21:29", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Lisa Riley", "", "publish", "open", "open", "", "lisa-riley", "", "", "2015-06-23 14:23:17", "2015-06-23 14:23:17", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15271", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15272", "1", "2015-06-23 14:22:23", "2015-06-23 14:22:23", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Sarah Thompson", "", "publish", "open", "open", "", "sarah-thompson", "", "", "2015-06-23 14:22:53", "2015-06-23 14:22:53", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15272", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15273", "1", "2015-06-23 14:24:19", "2015-06-23 14:24:19", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Brenda Slater", "", "publish", "open", "open", "", "brenda-slater", "", "", "2015-06-23 14:24:41", "2015-06-23 14:24:41", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15273", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("15274", "1", "2015-06-23 14:25:24", "2015-06-23 14:25:24", "<h4 style=\"line-height: 28px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</h4>\r\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Adam Heeney", "", "publish", "open", "open", "", "adam-heeney", "", "", "2015-06-23 14:25:24", "2015-06-23 14:25:24", "", "0", "http://localhost/mdeal2/?post_type=team&#038;p=15274", "0", "team", "", "0");
INSERT INTO `wp_posts` VALUES("17284", "1", "2015-11-23 09:24:34", "2015-11-23 09:24:34", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:24:34", "2015-11-23 09:24:34", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15339", "1", "2015-06-24 09:20:01", "2015-06-24 09:20:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-24 09:20:01", "2015-06-24 09:20:01", "", "3503", "http://localhost/mdeal2/?p=15339", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15340", "1", "2015-06-24 09:20:29", "2015-06-24 09:20:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\" icon_color=\"#e0e0e0\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-24 09:20:29", "2015-06-24 09:20:29", "", "3503", "http://localhost/mdeal2/?p=15340", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15341", "1", "2015-06-24 09:23:40", "2015-06-24 09:23:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"120\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\" icon_color=\"#e0e0e0\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\" icon_fontawesome=\"fa fa-quote-left\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-06-24 09:23:40", "2015-06-24 09:23:40", "", "3503", "http://localhost/mdeal2/?p=15341", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17283", "1", "2015-11-23 09:23:59", "2015-11-23 09:23:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105\" icon_heigth=\"105\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:23:59", "2015-11-23 09:23:59", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17290", "1", "2015-11-26 10:25:12", "2015-11-26 10:25:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:25:12", "2015-11-26 10:25:12", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15399", "1", "2015-06-24 16:26:09", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-06-24 16:26:09", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=15399", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("15431", "1", "2015-06-25 11:54:58", "2015-06-25 11:54:58", "", "financeparallax", "", "inherit", "open", "open", "", "financeparallax", "", "", "2015-06-25 11:54:58", "2015-06-25 11:54:58", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/financeparallax.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17282", "1", "2015-11-23 09:23:21", "2015-11-23 09:23:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:23:21", "2015-11-23 09:23:21", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15464", "1", "2015-06-25 12:48:33", "2015-06-25 12:48:33", "", "doubleexp", "", "inherit", "open", "open", "", "doubleexp", "", "", "2015-06-25 12:48:33", "2015-06-25 12:48:33", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/doubleexp.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17617", "1", "2015-12-21 16:50:15", "2015-12-21 16:50:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:50:15", "2015-12-21 16:50:15", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15539", "1", "2015-06-26 13:49:09", "2015-06-26 13:49:09", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421408612047{padding-top: 80px !important;padding-bottom: 100px !important;}\" full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner css=\".vc_custom_1421406403730{padding-top: 75px !important;}\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner css=\".vc_custom_1421407701578{padding-top: 75px !important;}\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-06-26 13:49:09", "2015-06-26 13:49:09", "", "14279", "http://localhost/mdeal2/?p=15539", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15540", "1", "2015-06-26 13:50:13", "2015-06-26 13:50:13", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-06-26 13:50:13", "2015-06-26 13:50:13", "", "14279", "http://localhost/mdeal2/?p=15540", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15541", "1", "2015-06-26 13:50:34", "2015-06-26 13:50:34", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-06-26 13:50:34", "2015-06-26 13:50:34", "", "14279", "http://localhost/mdeal2/?p=15541", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15542", "1", "2015-06-26 13:50:55", "2015-06-26 13:50:55", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/4\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-06-26 13:50:55", "2015-06-26 13:50:55", "", "14279", "http://localhost/mdeal2/?p=15542", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15555", "1", "2015-06-26 14:11:51", "2015-06-26 14:11:51", "[vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_custom_heading text=\"POSTS STYLE 1\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_post_type=\"0\" show_title=\"1\" show_image=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"15,16\" content_align=\"center\" item_heading_size=\"h5\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327754114{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 2\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 3\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout1\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"center\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"600italic\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search-plus\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327765869{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 4\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 5\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"0\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" item_title_color=\"#ffffff\" item_title_hover_color=\"#ffffff\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327780727{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 6\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout4\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"0\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" curve_position=\"\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 7\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout5\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\" max_slide=\"2\" content_color=\"#999999\" item_title_hover_color=\"#a1a1a1\" item_title_color=\"#111111\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" curve_position=\"\" css=\".vc_custom_1435327793408{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"150px\"][vc_custom_heading text=\"POSTS STYLE 8\" font_container=\"tag:h3|font_size:20px|text_align:center|color:%23222222\" google_fonts=\"font_family:Lato%3A100%2C100italic%2C300%2C300italic%2Cregular%2Citalic%2C700%2C700italic%2C900%2C900italic|font_style:700%20bold%20regular%3A700%3Anormal\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"3\" el_width=\"50\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"40px\" accent_color=\"#dddddd\"][vc_empty_space height=\"48px\"][cshero-post-carousel posts_per_page=\"4\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout6\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" content_color=\"#999999\" overlay_bg_color=\"rgba(255,255,255,0.8)\" show_title=\"1\" item_title_color=\"#111111\" item_title_hover_color=\"#a1a1a1\" item_heading_size=\"h5\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"d M Y\" date_font_format=\"400\" date_font_style=\"uppercase\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"0\" popup_text=\"Large Image\" popup_icon=\"ion-ios-search\" link_type=\"icon\" title_align=\"text-left\" heading_text_style=\"none\" show_post_type=\"0\" show_image=\"1\" category=\"15,16\"][vc_empty_space height=\"150px\"][/vc_column][/vc_row]", "Post Carousel", "", "inherit", "open", "open", "", "14498-revision-v1", "", "", "2015-06-26 14:11:51", "2015-06-26 14:11:51", "", "14498", "http://localhost/mdeal2/?p=15555", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15556", "1", "2015-06-26 14:16:14", "2015-06-26 14:16:14", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435328170526{margin-top: -80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\" exo_same_height=\"no\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705714414{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "ACCORDION", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-06-26 14:16:14", "2015-06-26 14:16:14", "", "3051", "http://localhost/mdeal2/?p=15556", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17604", "1", "2015-12-18 16:36:17", "2015-12-18 16:36:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:36:17", "2015-12-18 16:36:17", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17605", "1", "2015-12-18 16:37:08", "2015-12-18 16:37:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"slider2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451316550172{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "publish", "open", "open", "", "home-3", "", "", "2016-01-21 16:31:55", "2016-01-21 16:31:55", "", "0", "http://localhost/mdeal2/?page_id=17605", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17618", "1", "2015-12-21 16:53:12", "2015-12-21 16:53:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"26\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:53:12", "2015-12-21 16:53:12", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17612", "1", "2015-12-21 16:24:01", "2015-12-21 16:24:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:24:01", "2015-12-21 16:24:01", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17611", "1", "2015-12-21 16:20:57", "2015-12-21 16:20:57", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:20:57", "2015-12-21 16:20:57", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17606", "1", "2015-12-18 16:37:08", "2015-12-18 16:37:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-18 16:37:08", "2015-12-18 16:37:08", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17607", "1", "2015-12-18 16:37:37", "2015-12-18 16:37:37", " ", "", "", "publish", "open", "closed", "", "17607", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17607", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17685", "1", "2015-12-29 15:06:23", "2015-12-29 15:06:23", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button><button class=\"btn btn-danger\" type=\"button\">Danger</button>\r\n<button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button>\r\n<button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button><button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-29 15:06:23", "2015-12-29 15:06:23", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17686", "1", "2015-12-29 15:09:18", "2015-12-29 15:09:18", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button><button class=\"btn btn-danger\" type=\"button\">Danger</button>\r\n<button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button>\r\n<button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button><button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" style=\"margin-bottom: 20px;\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-29 15:09:18", "2015-12-29 15:09:18", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17751", "1", "2016-09-09 14:13:10", "2016-09-09 14:13:10", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"1466\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact", "", "inherit", "closed", "closed", "", "1482-revision-v1", "", "", "2016-09-09 14:13:10", "2016-09-09 14:13:10", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17688", "1", "2015-12-30 15:06:20", "2015-12-30 15:06:20", "", "Blog .2 Light - Right Sidebar", "", "inherit", "open", "open", "", "16023-autosave-v1", "", "", "2015-12-30 15:06:20", "2015-12-30 15:06:20", "", "16023", "http://localhost/mdeal2/16023-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17689", "1", "2016-01-03 16:57:39", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2016-01-03 16:57:39", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?post_type=header&p=17689", "0", "header", "", "0");
INSERT INTO `wp_posts` VALUES("17690", "1", "2016-01-04 14:57:27", "2016-01-04 14:57:27", " ", "", "", "publish", "open", "closed", "", "17690", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17690", "24", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17693", "1", "2016-01-04 15:56:31", "2016-01-04 15:56:31", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2016-01-04 15:56:31", "2016-01-04 15:56:31", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17610", "1", "2015-12-24 16:03:12", "2015-12-24 16:03:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\n</div>\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\n</div>\n<div>\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\n</div>\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\n</div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\n</div>\n<div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\n</div>\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\n</div>\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_title_heading=\"\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"\" show_readmore=\"0\" icon_fontawesome=\"\" read_more=\"Read more\" morelink=\"\" moretext=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\n</div>\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\n</div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-autosave-v1", "", "", "2015-12-24 16:03:12", "2015-12-24 16:03:12", "", "17605", "http://localhost/mdeal2/17605-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17616", "1", "2015-12-21 16:49:03", "2015-12-21 16:49:03", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716537009{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features&lt;s/trong&gt;</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:49:03", "2015-12-21 16:49:03", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17615", "1", "2015-12-21 16:47:43", "2015-12-21 16:47:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:47:43", "2015-12-21 16:47:43", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17614", "1", "2015-12-21 16:44:43", "2015-12-21 16:44:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:44:43", "2015-12-21 16:44:43", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17613", "1", "2015-12-21 16:25:41", "2015-12-21 16:25:41", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:25:41", "2015-12-21 16:25:41", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15622", "1", "2015-06-29 03:07:23", "2015-06-29 03:07:23", "", "page-title-exo_02", "", "inherit", "open", "open", "", "page-title-exo_02", "", "", "2015-06-29 03:07:23", "2015-06-29 03:07:23", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/01/page-title-exo_02.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17677", "1", "2015-12-29 14:28:21", "2015-12-29 14:28:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1451399240817{padding-bottom: 40px !important;}\" exo_same_height=\"no\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Animated Graphs", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:28:21", "2015-12-29 14:28:21", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17703", "1", "2016-01-10 16:03:00", "2016-01-10 16:03:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2016-01-10 16:03:00", "2016-01-10 16:03:00", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17679", "1", "2015-12-29 14:39:09", "2015-12-29 14:39:09", " ", "", "", "publish", "open", "closed", "", "17679", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17679", "11", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17680", "1", "2015-12-29 14:39:09", "2015-12-29 14:39:09", " ", "", "", "publish", "open", "closed", "", "17680", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17680", "12", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17681", "1", "2015-12-29 14:39:09", "2015-12-29 14:39:09", " ", "", "", "publish", "open", "closed", "", "17681", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17681", "13", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17682", "1", "2015-12-29 14:39:09", "2015-12-29 14:39:09", " ", "", "", "publish", "open", "closed", "", "17682", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17682", "20", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17676", "1", "2015-12-29 14:27:24", "2015-12-29 14:27:24", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1451399240817{padding-bottom: 40px !important;}\" exo_same_height=\"no\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:27:24", "2015-12-29 14:27:24", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17674", "1", "2015-12-29 14:15:48", "2015-12-29 14:15:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:15:48", "2015-12-29 14:15:48", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17675", "1", "2015-12-29 14:17:25", "2015-12-29 14:17:25", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398539550{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:17:25", "2015-12-29 14:17:25", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17673", "1", "2015-12-29 14:14:04", "2015-12-29 14:14:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"pink\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:14:04", "2015-12-29 14:14:04", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15715", "1", "2015-06-29 14:43:32", "2015-06-29 14:43:32", "", "square1", "", "inherit", "open", "open", "", "square1", "", "", "2015-06-29 14:43:32", "2015-06-29 14:43:32", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/square1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15716", "1", "2015-06-29 14:43:34", "2015-06-29 14:43:34", "", "square3", "", "inherit", "open", "open", "", "square3", "", "", "2015-06-29 14:43:34", "2015-06-29 14:43:34", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/square3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15717", "1", "2015-06-29 14:43:39", "2015-06-29 14:43:39", "", "square2", "", "inherit", "open", "open", "", "square2", "", "", "2015-06-29 14:43:39", "2015-06-29 14:43:39", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/square2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17671", "1", "2015-12-29 14:09:45", "2015-12-29 14:09:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"grey\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:09:45", "2015-12-29 14:09:45", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17672", "1", "2015-12-29 14:11:44", "2015-12-29 14:11:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_separator color=\"pink\" align=\"left\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:11:44", "2015-12-29 14:11:44", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17670", "1", "2015-12-29 14:08:19", "2015-12-29 14:08:19", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451398095554{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:08:19", "2015-12-29 14:08:19", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17668", "1", "2015-12-29 14:06:08", "2015-12-29 14:06:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:06:08", "2015-12-29 14:06:08", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17669", "1", "2015-12-29 14:07:35", "2015-12-29 14:07:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-hand-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-29 14:07:35", "2015-12-29 14:07:35", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17667", "1", "2015-12-28 16:16:27", "2015-12-28 16:16:27", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 16:16:27", "2015-12-28 16:16:27", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17666", "1", "2015-12-28 15:52:02", "2015-12-28 15:52:02", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451317918556{padding-bottom: 40px !important;}\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:52:02", "2015-12-28 15:52:02", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17665", "1", "2015-12-28 15:50:56", "2015-12-28 15:50:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"82\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Developing\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"85\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Brand Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"95\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Support\" units=\"%\" title_color=\"#333c4e\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:50:56", "2015-12-28 15:50:56", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17660", "1", "2015-12-28 15:37:06", "2015-12-28 15:37:06", "[vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"true\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" same_height=\"true\" height_engle=\"60px\" height_engle_style2=\"60px\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" bg_color=\"#eeeeee\" color=\"#70d2e5\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"span\" icon_size=\"18px\" icon_color=\"#888888\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"18px\" icon_color=\"#888888\"][/vc_column_inner][vc_column_inner width=\"1/2\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" bg_color=\"#eeeeee\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-anchor\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-area-chart\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" icon=\"fa fa-yelp\" bg_color=\"#eeeeee\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_color=\"#70d2e5\" icon_size=\"18px\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][vc_empty_space height=\"60px\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner width=\"2/3\"][cshero-progressbar show_title=\"1\" title=\"Graphic Design\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Web Developement\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Illustration\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16px 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][cshero-progressbar show_title=\"1\" title=\"Marketing\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout2\" color=\"#444444\" title_margin=\"16p\r\nx 0\" height=\"20px\" title_size=\"span\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:37:06", "2015-12-28 15:37:06", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17664", "1", "2015-12-28 15:48:50", "2015-12-28 15:48:50", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:48:50", "2015-12-28 15:48:50", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17663", "1", "2015-12-28 15:48:12", "2015-12-28 15:48:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Animated Content For<strong>You!</strong></h1>\r\n</div>\r\n&nbsp;\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" parallax_speed=\"0.1\" bg_video_transparent=\"1\" height_engle=\"60px\" height_engle_style2=\"60px\"][vc_column width=\"1/1\"][vc_row_inner css=\".vc_custom_1421405826923{padding-bottom: 60px !important;}\"][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" bg_color=\"#ffffff\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" show_value=\"true\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"GRAPHIC DESIGN\" value=\"55\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-home\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"HTML/CSS\" value=\"100\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-anchor\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"PHOTOGRAPHY\" value=\"80\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-yelp\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][vc_column_inner width=\"1/1\"][cshero-progressbar show_title=\"1\" title=\"MARKETING\" value=\"60\" label_value=\"%\" heading_size=\"h3\" layout=\"progressbar.layout1\" icon=\"fa fa-area-chart\" color=\"#333333\" title_margin=\"16px 0\" height=\"10px\" title_size=\"h6\" icon_size=\"40px\" icon_color=\"#70d2e5\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435326508946{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" el_width=\"100\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cs-piechart title_tag=\"h1\" type=\"doughnut\" inner_cutout=\"0\" style=\"1\" width=\"auto\" height=\"auto\" title=\"Web Design\"][cs-piechart-v2 title_tag=\"h1\" type=\"pie_charts\" pie_allow_point_select=\"\" char_in_legend=\"\" char_show_labels=\"\" char_gradient_fill=\"\" char_show_3d=\"\" char_alpha=\"\" char_depth=\"\" pie_innersize=\"\"][/cs-piechart-v2][vc_pie value=\"78\" heading_size=\"h6\" icon_size=\"24\" icon_color=\"#888888\" color=\"#179bb2\" pie_width=\"12\" style=\"style2\" title=\"Web Design\" units=\"%\" title_color=\"#333c4e\" desc=\"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis.\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row]", "Progress Bars", "", "inherit", "open", "open", "", "14279-revision-v1", "", "", "2015-12-28 15:48:12", "2015-12-28 15:48:12", "", "14279", "http://localhost/mdeal2/14279-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17659", "1", "2015-12-28 15:29:13", "2015-12-28 15:29:13", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"slider2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451316550172{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-28 15:29:13", "2015-12-28 15:29:13", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17658", "1", "2015-12-28 15:25:33", "2015-12-28 15:25:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"slider2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-28 15:25:33", "2015-12-28 15:25:33", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15724", "1", "2015-06-29 14:52:16", "2015-06-29 14:52:16", "", "yellowgirl", "", "inherit", "open", "open", "", "yellowgirl", "", "", "2015-06-29 14:52:16", "2015-06-29 14:52:16", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/yellowgirl.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17633", "1", "2015-12-24 16:52:46", "2015-12-24 16:52:46", "", "client-logo-1", "", "inherit", "open", "open", "", "client-logo-1", "", "", "2015-12-24 16:52:46", "2015-12-24 16:52:46", "", "35", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17634", "1", "2015-12-24 16:55:59", "2015-12-24 16:55:59", "", "client-logo-2", "", "inherit", "open", "open", "", "client-logo-2", "", "", "2015-12-24 16:55:59", "2015-12-24 16:55:59", "", "46", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17635", "1", "2015-12-24 16:56:59", "2015-12-24 16:56:59", "", "client-logo-3", "", "inherit", "open", "open", "", "client-logo-3", "", "", "2015-12-24 16:56:59", "2015-12-24 16:56:59", "", "47", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17636", "1", "2015-12-24 16:58:25", "2015-12-24 16:58:25", "", "client-logo-4", "", "inherit", "open", "open", "", "client-logo-4", "", "", "2015-12-24 16:58:25", "2015-12-24 16:58:25", "", "48", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17637", "1", "2015-12-24 16:59:21", "2015-12-24 16:59:21", "", "client-logo-5", "", "inherit", "open", "open", "", "client-logo-5", "", "", "2015-12-24 16:59:21", "2015-12-24 16:59:21", "", "49", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-5.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17638", "1", "2015-12-24 17:01:44", "2015-12-24 17:01:44", "", "client-logo-6", "", "inherit", "open", "open", "", "client-logo-6", "", "", "2015-12-24 17:01:44", "2015-12-24 17:01:44", "", "50", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-6.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17639", "1", "2015-12-24 17:02:05", "2015-12-24 17:02:05", "", "Client6", "", "inherit", "open", "open", "", "50-autosave-v1", "", "", "2015-12-24 17:02:05", "2015-12-24 17:02:05", "", "50", "http://localhost/mdeal2/50-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17640", "1", "2015-12-24 17:03:13", "2015-12-24 17:03:13", "", "client-logo-7", "", "inherit", "open", "open", "", "client-logo-7", "", "", "2015-12-24 17:03:13", "2015-12-24 17:03:13", "", "51", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-7.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17641", "1", "2015-12-24 17:03:58", "2015-12-24 17:03:58", "", "client-logo-8", "", "inherit", "open", "open", "", "client-logo-8", "", "", "2015-12-24 17:03:58", "2015-12-24 17:03:58", "", "52", "http://localhost/mdeal2/wp-content/uploads/2014/12/client-logo-8.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17655", "1", "2015-12-28 15:20:05", "2015-12-28 15:20:05", "", "slider-2-3", "", "inherit", "open", "open", "", "slider-2-3", "", "", "2015-12-28 15:20:05", "2015-12-28 15:20:05", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/12/slider-2-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17656", "1", "2015-12-28 15:22:17", "2015-12-28 15:22:17", "", "slider-2-2", "", "inherit", "open", "open", "", "slider-2-2", "", "", "2015-12-28 15:22:17", "2015-12-28 15:22:17", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/12/slider-2-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17657", "1", "2015-12-28 15:23:05", "2015-12-28 15:23:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"slider2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-28 15:23:05", "2015-12-28 15:23:05", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15727", "1", "2015-06-29 14:54:17", "2015-06-29 14:54:17", "", "yellgirl2", "", "inherit", "open", "open", "", "yellgirl2", "", "", "2015-06-29 14:54:17", "2015-06-29 14:54:17", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/yellgirl2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17632", "1", "2015-12-24 16:42:52", "2015-12-24 16:42:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:42:52", "2015-12-24 16:42:52", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15730", "1", "2015-06-29 14:57:47", "2015-06-29 14:57:47", "", "hands", "", "inherit", "open", "open", "", "hands", "", "", "2015-06-29 14:57:47", "2015-06-29 14:57:47", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/hands.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15731", "1", "2015-06-29 14:58:25", "2015-06-29 14:58:25", "", "city", "", "inherit", "open", "open", "", "city", "", "", "2015-06-29 14:58:25", "2015-06-29 14:58:25", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/city.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17630", "1", "2015-12-24 16:39:28", "2015-12-24 16:39:28", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:39:28", "2015-12-24 16:39:28", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17629", "1", "2015-12-24 16:37:45", "2015-12-24 16:37:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:37:45", "2015-12-24 16:37:45", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17628", "1", "2015-12-24 16:36:29", "2015-12-24 16:36:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:36:29", "2015-12-24 16:36:29", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17627", "1", "2015-12-24 16:34:01", "2015-12-24 16:34:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:34:01", "2015-12-24 16:34:01", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17631", "1", "2015-12-24 16:40:44", "2015-12-24 16:40:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:40:44", "2015-12-24 16:40:44", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17626", "1", "2015-12-24 16:02:02", "2015-12-24 16:02:02", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 16:02:02", "2015-12-24 16:02:02", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17624", "1", "2015-12-24 15:55:43", "2015-12-24 15:55:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 15:55:43", "2015-12-24 15:55:43", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17623", "1", "2015-12-24 15:54:14", "2015-12-24 15:54:14", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972376908{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 4 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 15:54:14", "2015-12-24 15:54:14", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17619", "1", "2015-12-21 16:58:19", "2015-12-21 16:58:19", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"26\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 16:58:19", "2015-12-21 16:58:19", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17620", "1", "2015-12-21 17:01:34", "2015-12-21 17:01:34", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 17:01:34", "2015-12-21 17:01:34", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17622", "1", "2015-12-24 15:53:02", "2015-12-24 15:53:02", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972376908{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 4 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 15:53:02", "2015-12-24 15:53:02", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17625", "1", "2015-12-24 15:58:00", "2015-12-24 15:58:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-24 15:58:00", "2015-12-24 15:58:00", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17621", "1", "2015-12-21 17:09:43", "2015-12-21 17:09:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450717340035{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"128\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "open", "open", "", "17605-revision-v1", "", "", "2015-12-21 17:09:43", "2015-12-21 17:09:43", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15753", "1", "2015-06-30 01:52:49", "2015-06-30 01:52:49", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\"ADDRESS \" title_color=\"#222222\" icon_title=\" fa-map-marker\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-home\" show_icon_link=\"\" read_btn=\"\"]97 East 15th Street, Suite 57, New York, NY 5730[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\" PHONE NUMBER \" title_color=\"#222222\" icon_title=\" fa-phone\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-phone\" show_icon_link=\"\" read_btn=\"\"]Tel: +44 (0) 1254 0000 000\r\nFax: +44 (0) 1254 0000 001[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\"EMAIL \" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" show_icon_link=\"\" read_btn=\"\"]info@yourdomain.com hello@yourdomain.com[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact Style 2", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-06-30 01:52:49", "2015-06-30 01:52:49", "", "1482", "http://localhost/mdeal2/?p=15753", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15786", "1", "2015-06-30 08:28:59", "2015-06-30 08:28:59", "", "services1light", "", "inherit", "open", "open", "", "services1light", "", "", "2015-06-30 08:28:59", "2015-06-30 08:28:59", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/services1light.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15815", "1", "2015-06-30 09:20:48", "2015-06-30 09:20:48", "[vc_row css=\".vc_custom_1421861276897{margin-right: -15px !important;margin-left: -15px !important;border-bottom-width: 1px !important;padding-bottom: 100px !important;border-bottom-color: #eeeeee !important;border-bottom-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout1\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" title_background_pricing_color=\"#eeeeee\" content_background_pricing_color=\"#dddddd\" category=\"6,56\" sub_heading_size=\"h3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1433926109061{padding-top: 100px !important;padding-bottom: 100px !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#333333\" button_font_pricing_color=\"#ffffff\" show_image=\"1\" category=\"9,57\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"0\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"4\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#ffffff\" title_background_pricing_color=\"#1babcc\" content_background_pricing_color=\"#1babcc\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#1babcc\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1421863166366{border-top-width: 1px !important;padding-top: 150px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout4\" show_image=\"1\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-color size-default\" order=\"none\" title_pricing_color=\"#444444\" category=\"58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_video=\"1\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-06-30 09:20:48", "2015-06-30 09:20:48", "", "3629", "http://localhost/mdeal2/?p=15815", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15816", "1", "2015-06-30 09:24:45", "2015-06-30 09:24:45", "", "promo2", "", "inherit", "open", "open", "", "promo2", "", "", "2015-06-30 09:24:45", "2015-06-30 09:24:45", "", "9166", "http://localhost/mdeal2/wp-content/uploads/2014/12/promo2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15817", "1", "2015-06-30 09:24:46", "2015-06-30 09:24:46", "", "promo1", "", "inherit", "open", "open", "", "promo1", "", "", "2015-06-30 09:24:46", "2015-06-30 09:24:46", "", "9166", "http://localhost/mdeal2/wp-content/uploads/2014/12/promo1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("15818", "1", "2015-06-30 09:24:47", "2015-06-30 09:24:47", "", "promo3", "", "inherit", "open", "open", "", "promo3", "", "", "2015-06-30 09:24:47", "2015-06-30 09:24:47", "", "9166", "http://localhost/mdeal2/wp-content/uploads/2014/12/promo3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17280", "1", "2015-11-23 09:21:01", "2015-11-23 09:21:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\" box_bg=\"#81d742\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:21:01", "2015-11-23 09:21:01", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17281", "1", "2015-11-23 09:22:22", "2015-11-23 09:22:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#000000\" border_color_hover=\"#81d742\" border_width=\"65\" border_radius=\"50%\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:22:22", "2015-11-23 09:22:22", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15957", "1", "2015-07-03 11:50:03", "2015-07-03 11:50:03", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"custom\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\"ADDRESS \" title_color=\"#222222\" icon_title=\" fa-map-marker\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-home\" show_icon_link=\"\" read_btn=\"\"]97 East 15th Street, Suite 57, New York, NY 5730[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\" PHONE NUMBER \" title_color=\"#222222\" icon_title=\" fa-phone\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-phone\" show_icon_link=\"\" read_btn=\"\"]Tel: +44 (0) 1254 0000 000\r\nFax: +44 (0) 1254 0000 001[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\"EMAIL \" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" show_icon_link=\"\" read_btn=\"\"]info@yourdomain.com hello@yourdomain.com[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Agency .1 Light - Contact", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-07-03 11:50:03", "2015-07-03 11:50:03", "", "1482", "http://localhost/mdeal2/?p=15957", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15958", "1", "2015-07-03 11:51:35", "2015-07-03 11:51:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433791055284{padding-top: 80px !important;padding-bottom: 80px !important;}\" el_class=\"z-index-1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\" icon_color=\"#e0e0e0\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\" icon_fontawesome=\"fa fa-quote-left\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-07-03 11:51:35", "2015-07-03 11:51:35", "", "3503", "http://localhost/mdeal2/?p=15958", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15959", "1", "2015-07-03 11:52:01", "2015-07-03 11:52:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.6\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435924322019{padding-top: 80px !important;padding-bottom: 140px !important;}\" el_class=\"z-index-1\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][cshero-testimonial heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-left text-left\" pager_style=\"default\" content_align=\"text-left\" show_image=\"1\" crop_image=\"1\" image_align=\"left\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_readmore=\"0\" read_more=\"Read more\" category=\"54,5,55\" margin_item=\"30\" min_slide=\"1\" max_slide=\"2\" rows=\"2\" width_item=\"500\" width_image=\"88px\" height_image=\"88px\" image_border=\"100%\" item_title_heading_color=\"#13151c\"][/vc_column][/vc_row][vc_row full_width=\"false\" height_engle=\"80px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0.2\" css=\".vc_custom_1433787709343{margin-top: -80px !important;padding-top: 160px !important;padding-bottom: 160px !important;background: #ffffff url(http://localhost/mdeal2/wp-content/uploads/2015/02/clientsbg.jpg?id=2913) !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" engle_uplicated_height=\"80px\" engle_duplicated_border_width=\"6\" engle_duplicated_height_style2=\"60px\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_align=\"lax_left_bottom\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_align=\"lax_right_middle\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_align=\"lax_right_bottom\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" lax_layer4_align=\"lax_left_bottom\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" type=\"ww-custom\" engle_position=\"engle-top-right\" engle_color=\"#ffffff\" engle_border_width=\"6\" lax_layer2_position_y=\"100px\" engle_position_duplicate=\"engle-bottom-right\" engle_duplicated_color=\"#13151c\" bg_video_color=\"#ffffff\" enable_parallax=\"1\" engle_border_color=\"#e9e9e9\" engle_duplicated_border_color=\"#e9e9e9\" engle_position_style2=\"engle-bottom-style1\" engle_color_style2=\"#222222\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_color_style2=\"#222222\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" enable_engle_duplicate=\"\" enable_engle_style2=\"\" enable_engle_duplicated_style2=\"\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" arrow_position=\"top\" exo_same_height=\"no\"][vc_column width=\"1/1\" text_align=\"center\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"fade\" auto_scroll=\"1\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"0\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"120\" height_image=\"120\" image_border=\"50%\" excerpt_length_font_size=\"16px\" content_padding=\"40px 40px 20px 40px\" content_bg_color=\"rgba(255,255,255,0.3)\" quotation_color=\"rgba(255,255,255,0.4)\"][/vc_column][/vc_row][vc_row full_width=\"false\" parallax=\"\" parallax_image=\"\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"ww-custom\" bg_color_left=\"\" bg_color_right=\"\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_position=\"\" curve_height=\"60px\" curve_color=\"\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_bottom\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_right_middle\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_right_bottom\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_bottom\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_right_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_right_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\" el_id=\"\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" show_pager=\"0\" show_image=\"0\" crop_image=\"1\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" icon_fontawesome=\"fa fa-quote-left\" icon_color=\"#e0e0e0\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" style=\"\" border_width=\"1\" el_width=\"\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" arrow_color=\"\" arrow_image=\"\" custom_sparator_width=\"\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433823508471{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"center\" column_style=\"\" list_style=\"\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"0\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" quotation_type=\"none\" quotation_icon_size=\"48px\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"18px\" show_readmore=\"0\" read_more=\"Read more\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"90\" height_image=\"90\" quotation_color=\"rgba(255,255,255,0.4)\" item_title_heading=\"h5\" icon_fontawesome=\"fa fa-quote-left\"][vc_empty_space height=\"90px\"][vc_separator color=\"custom\" align=\"center\" border_width=\"1\" separator_arrow=\"no\" separator_arrow_type=\"border\" arrow_width=\"12\" accent_color=\"#e9e9e9\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" type=\"ww-custom\" exo_same_height=\"no\" enable_row_engle=\"\" engle_position=\"engle-top-right\" height_engle=\"80px\" engle_color=\"#ffffff\" engle_border_color=\"#e9e9e9\" engle_border_width=\"6\" enable_engle_duplicate=\"\" engle_position_duplicate=\"engle-bottom-right\" engle_uplicated_height=\"80px\" engle_duplicated_color=\"#13151c\" engle_duplicated_border_color=\"#e9e9e9\" engle_duplicated_border_width=\"6\" enable_engle_style2=\"\" engle_position_style2=\"engle-bottom-style1\" height_engle_style2=\"60px\" engle_color_style2=\"#222222\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"engle-top-style2\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"#222222\" enable_curve=\"\" curve_height=\"60px\" enable_parallax=\"1\" parallax_speed=\"0.8\" bg_video_color=\"#ffffff\" bg_video_transparent=\"0.2\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_bottom\" lax_layer2_align=\"lax_right_middle\" lax_layer3_align=\"lax_right_bottom\" lax_layer4_align=\"lax_left_bottom\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_right_top\" lax_layer7_align=\"lax_right_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433834877859{background-color: #ffffff !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\" lax_layer1_width=\"309px\" lax_layer1_height=\"249px\" lax_layer1_position_x=\"50px\" lax_layer1_position_y=\"350px\" lax_layer2_width=\"302px\" lax_layer2_height=\"353px\" lax_layer2_position_x=\"0px\" lax_layer3_width=\"127px\" lax_layer3_height=\"267px\" lax_layer3_position_x=\"220px\" lax_layer3_position_y=\"15px\" font_color=\"#222222\" bg_lax=\"703\" dt_id=\"ideas\" lax_layer4_width=\"139px\" lax_layer4_height=\"158px\" lax_layer4_position_x=\"270px\" lax_layer4_position_y=\"20px\" lax_layer5_width=\"914px\" lax_layer5_height=\"460px\" lax_layer5_position_x=\"-450px\" lax_layer6_width=\"964px\" lax_layer6_height=\"498px\" lax_layer6_position_x=\"-570px\" lax_layer5_position_y=\"-110px\" lax_layer6_position_y=\"-150px\" lax_layer2_position_y=\"100px\" lax_layer1_speed=\"4\" lax_layer1_move=\"35\" lax_layer2_speed=\"3\" lax_layer2_move=\"60\" lax_layer5_speed=\"6\" lax_layer5_move=\"40\" lax_layer4_speed=\"3\" lax_layer4_move=\"100\" lax_layer3_speed=\"4\" lax_layer3_move=\"40\" lax_layer6_speed=\"5\" lax_layer6_move=\"70\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" text_align=\"center\" offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_empty_space height=\"90px\"][cshero-testimonial heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"fade\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"1000\" show_nav=\"0\" nav_align=\"1\" nav_arrow_style=\"default\" nav_left_icon=\"fa fa-angle-left\" nav_right_icon=\"fa fa-angle-right\" nav_icon_offset=\"0\" show_pager=\"1\" pager_align=\"pager-center text-center\" pager_style=\"bullet-o white\" content_align=\"text-center\" show_image=\"1\" crop_image=\"1\" image_align=\"center\" show_title=\"1\" item_title_heading=\"h5\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"16px\" show_readmore=\"0\" read_more=\"Read more\" quotation_type=\"none\" quotation_icon_size=\"48px\" heading_color=\"#13151c\" category=\"5,54\" content_color=\"#13151c\" width_item=\"600\" width_image=\"100\" height_image=\"100\" quotation_color=\"rgba(255,255,255,0.4)\"][vc_empty_space height=\"90px\"][/vc_column][/vc_row]", "Testimonials", "", "inherit", "open", "open", "", "3503-revision-v1", "", "", "2015-07-03 11:52:01", "2015-07-03 11:52:01", "", "3503", "http://localhost/mdeal2/?p=15959", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("15985", "1", "2015-07-03 14:51:27", "2015-07-03 14:51:27", "", "Coverr-Highrise", "", "inherit", "open", "open", "", "coverr-highrise", "", "", "2015-07-03 14:51:27", "2015-07-03 14:51:27", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/Coverr-Highrise.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17279", "1", "2015-11-23 09:13:02", "2015-11-23 09:13:02", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:13:02", "2015-11-23 09:13:02", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16023", "1", "2015-07-06 02:51:16", "2015-07-06 02:51:16", "", "Blog .2 Light - Right Sidebar", "", "publish", "open", "open", "", "blog-2light-right-sidebar", "", "", "2015-12-30 15:14:33", "2015-12-30 15:14:33", "", "0", "http://localhost/mdeal2/?page_id=16023", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("16024", "1", "2015-07-06 02:51:16", "2015-07-06 02:51:16", "", "Blog .2Light - Right Sidebar", "", "inherit", "open", "open", "", "16023-revision-v1", "", "", "2015-07-06 02:51:16", "2015-07-06 02:51:16", "", "16023", "http://localhost/mdeal2/?p=16024", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16029", "1", "2015-07-06 07:46:47", "2015-07-06 07:46:47", "", "Blog .2 Light - Right Sidebar", "", "inherit", "open", "open", "", "16023-revision-v1", "", "", "2015-07-06 07:46:47", "2015-07-06 07:46:47", "", "16023", "http://localhost/mdeal2/?p=16029", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16047", "1", "2015-07-06 09:51:22", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-06 09:51:22", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=16047", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("16048", "1", "2015-07-06 09:51:37", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-06 09:51:37", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?p=16048", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("16049", "1", "2015-07-06 09:51:46", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-06 09:51:46", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?p=16049", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("16050", "1", "2015-07-06 09:52:02", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-06 09:52:02", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=16050", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("16060", "1", "2015-07-06 10:23:15", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-06 10:23:15", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=16060", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17598", "1", "2015-12-18 16:18:57", "2015-12-18 16:18:57", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#444444\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#444444\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#444444\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-12-18 16:18:57", "2015-12-18 16:18:57", "", "3629", "http://localhost/mdeal2/3629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17599", "1", "2015-12-18 16:21:12", "2015-12-18 16:21:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:21:12", "2015-12-18 16:21:12", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17597", "1", "2015-12-18 16:18:38", "2015-12-18 16:18:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<h2 class=\"pane-title\">Special offers</h2>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:18:38", "2015-12-18 16:18:38", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16086", "1", "2015-07-06 12:19:22", "2015-07-06 12:19:22", "", "corp3", "", "inherit", "open", "open", "", "corp3-2", "", "", "2015-07-06 12:19:22", "2015-07-06 12:19:22", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/06/corp31.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17278", "1", "2015-11-23 09:11:44", "2015-11-23 09:11:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\"][/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:11:44", "2015-11-23 09:11:44", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17700", "1", "2016-01-06 15:03:08", "2016-01-06 15:03:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2016-01-06 15:03:08", "2016-01-06 15:03:08", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17701", "1", "2016-01-06 15:08:12", "2016-01-06 15:08:12", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;", "consectetur adipiscing", "", "inherit", "open", "open", "", "396-revision-v1", "", "", "2016-01-06 15:08:12", "2016-01-06 15:08:12", "", "396", "http://localhost/mdeal2/396-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16136", "1", "2015-07-06 14:15:47", "2015-07-06 14:15:47", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]JTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/3\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\"ADDRESS \" title_color=\"#222222\" icon_title=\" fa-map-marker\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-home\" show_icon_link=\"\" read_btn=\"\"]97 East 15th Street, Suite 57, New York, NY 5730[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\" PHONE NUMBER \" title_color=\"#222222\" icon_title=\" fa-phone\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-phone\" show_icon_link=\"\" read_btn=\"\"]Tel: +44 (0) 1254 0000 000\r\nFax: +44 (0) 1254 0000 001[/cshero-fancy-box][vc_empty_space height=\"16px\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-left\" border_style=\"solid\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" crop_image=\"1\" width_image=\"300\" button_type=\"btn btn-default\" title=\"EMAIL \" title_color=\"#222222\" icon_title=\"fa-envelope\" icon_size=\"32px\" icon_color=\"#222222\" icon_color_hover=\"#ffffff\" icon_width=\"65px\" icon_heigth=\"65px\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#01abce\" border_color=\"#222222\" border_color_hover=\"#01abce\" border_width=\"2px\" border_radius=\"100%\" title_margin=\"0 0 10px\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" show_icon_link=\"\" read_btn=\"\"]info@yourdomain.com hello@yourdomain.com[/cshero-fancy-box][/vc_column][vc_column width=\"2/3\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Agency .1 Light - Contact", "", "inherit", "open", "open", "", "1482-revision-v1", "", "", "2015-07-06 14:15:47", "2015-07-06 14:15:47", "", "1482", "http://localhost/mdeal2/?p=16136", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17587", "1", "2015-12-18 15:34:37", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-12-18 15:34:37", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?p=17587", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("17592", "1", "2015-12-18 15:48:33", "2015-12-18 15:48:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 15:48:33", "2015-12-18 15:48:33", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17582", "1", "2015-12-17 16:17:13", "2015-12-17 16:17:13", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 16:17:13", "2015-12-17 16:17:13", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17583", "1", "2015-12-17 16:22:11", "2015-12-17 16:22:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 16:22:11", "2015-12-17 16:22:11", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17581", "1", "2015-12-17 16:15:20", "2015-12-17 16:15:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"64px\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 16:15:20", "2015-12-17 16:15:20", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17591", "1", "2015-12-18 15:47:03", "2015-12-18 15:47:03", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 15:47:03", "2015-12-18 15:47:03", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17590", "1", "2015-12-18 15:46:20", "2015-12-18 15:46:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 15:46:20", "2015-12-18 15:46:20", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17588", "1", "2015-12-18 15:42:14", "2015-12-18 15:42:14", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 15:42:14", "2015-12-18 15:42:14", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17584", "1", "2015-12-17 16:24:25", "2015-12-17 16:24:25", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 16:24:25", "2015-12-17 16:24:25", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17585", "1", "2015-12-17 16:32:38", "2015-12-17 16:32:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-17 16:32:38", "2015-12-17 16:32:38", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17746", "1", "2016-08-02 17:25:28", "2016-08-02 17:25:28", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470159169783{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\" categories=\"14,1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-08-02 17:25:28", "2016-08-02 17:25:28", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17586", "1", "2015-12-17 16:35:16", "2015-12-17 16:35:16", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-17 16:35:16", "2015-12-17 16:35:16", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16209", "1", "2015-07-07 13:19:24", "2015-07-07 13:19:24", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1435328170526{margin-top: -80px !important;padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\" exo_same_height=\"no\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1433246731976{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-2\" item_margin_bottom=\"\" item_border=\"\" title_align=\"left\" active_tab=\"2\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" el_id=\"\"][vc_column_text]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705259640{padding-top: 80px !important;padding-bottom: 80px !important;background-color: #13151c !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#ffffff\" bg_color_tab=\"#13151c\" color_tab=\"#ffffff\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" exo_same_height=\"no\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" arrow_position=\"top\" css=\".vc_custom_1434705714414{padding-top: 80px !important;padding-bottom: 80px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"\" list_style=\"\"][vc_accordion collapsible=\"\" disable_keyboard=\"\" vc_accordion_style=\"style-1\"][vc_accordion_tab title=\".design\" color_hover=\"#00accb\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".web\" color_hover=\"#9edd7f\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".apps\" color_hover=\"#fedc54\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][vc_accordion_tab title=\".marketing\" color_hover=\"#ec6451\" border_color_tab=\"#888888\" bg_color_tab=\"#ffffff\" color_tab=\"#13151c\"][vc_column_text css_animation=\"\"]Suspendisse eu dolor quis mauris posuere tempus. Donec elementum vitae lorem nec tincidunt. Vestibulum suscipit ullamcorper sem. Cras ac viverra urna. Fusce nec turpis luctus, consequat tortor nec, consectetur massa. In eget nibh in sapien egestas vehicula. Suspendisse ut tortor sit amet erat venenatis tincidunt. Morbi malesuada fermentum diam ac iaculis.\r\n\r\nCras tristique ultricies risus, ac tempus felis sollicitudin id. Sed dapibus augue a turpis dictum semper. Nulla sed dolor quis mauris gravida luctus sit amet quis libero. Nam turpis augue, pretium vel pharetra sit amet, fringilla vel libero. Donec ullamcorper tincidunt nulla, vel porttitor risus mollis et.[/vc_column_text][/vc_accordion_tab][/vc_accordion][/vc_column][/vc_row]", "Accordion", "", "inherit", "open", "open", "", "3051-revision-v1", "", "", "2015-07-07 13:19:24", "2015-07-07 13:19:24", "", "3051", "http://localhost/mdeal2/?p=16209", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17699", "1", "2016-01-06 15:00:19", "2016-01-06 15:00:19", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"14\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2016-01-06 15:00:19", "2016-01-06 15:00:19", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17516", "1", "2015-12-08 16:58:04", "2015-12-08 16:58:04", " ", "", "", "publish", "open", "closed", "", "17516", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17516", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17277", "1", "2015-11-23 09:11:11", "2015-11-23 09:11:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\"][/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:11:11", "2015-11-23 09:11:11", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17593", "1", "2015-12-18 16:06:55", "2015-12-18 16:06:55", " ", "", "", "publish", "open", "closed", "", "17593", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17593", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17595", "1", "2015-12-18 16:12:44", "2015-12-18 16:12:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#888888\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:12:44", "2015-12-18 16:12:44", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17594", "1", "2015-12-18 16:11:23", "2015-12-18 16:11:23", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#888888\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:11:23", "2015-12-18 16:11:23", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("16264", "1", "2015-07-07 16:14:06", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-07-07 16:14:06", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=16264", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17250", "1", "2015-08-19 01:32:18", "2015-08-19 01:32:18", "[vc_row][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"WORKING HOURS\" heading_color=\"#888888\" digit=\"35\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\" fa-clock-o\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"EMPLOYEES\" heading_color=\"#888888\" digit=\"3\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-group\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][vc_column width=\"1/3\"][cshero-counter heading_size=\"h4\" heading_align=\"text-center\" heading_text_style=\"none\" type=\"zero\" text_style=\"none\" align=\"text-center\" box=\"no\" layout=\"counter.layout1\" heading=\"HAPPY COMPANIES\" heading_color=\"#888888\" digit=\"345\" digit_font_size=\"71px\" digit_font_color=\"#222222\" icon=\"fa-heart\" icon_size=\"40px\" icon_color=\"#ec008c\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/1\"][vc_empty_space height=\"50\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.[/vc_column_text][/vc_column][/vc_row]", "Amendos", "", "inherit", "open", "open", "", "1226-autosave-v1", "", "", "2015-08-19 01:32:18", "2015-08-19 01:32:18", "", "1226", "http://localhost/mdeal2/1226-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17514", "1", "2015-12-08 16:58:04", "2015-12-08 16:58:04", " ", "", "", "publish", "open", "closed", "", "17514", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17514", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17444", "1", "2015-12-04 21:27:59", "2015-12-04 21:27:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:27:59", "2015-12-04 21:27:59", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17275", "1", "2015-11-23 09:08:13", "2015-11-23 09:08:13", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center margin-top-20\"><a class=\"vc_general cms-button md btn-icon-animate gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\" style=\"text-align: center;\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\" style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-23 09:08:13", "2015-11-23 09:08:13", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17515", "1", "2015-12-08 16:58:04", "2015-12-08 16:58:04", " ", "", "", "publish", "open", "closed", "", "17515", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17515", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17274", "1", "2015-11-23 09:08:13", "2015-11-23 09:08:13", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470159169783{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470161701188{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "publish", "open", "open", "", "phuong", "", "", "2016-09-30 16:08:39", "2016-09-30 16:08:39", "", "0", "http://localhost/mdeal2/?page_id=17274", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17430", "1", "2015-12-04 16:58:18", "2015-12-04 16:58:18", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:58:18", "2015-12-04 16:58:18", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17428", "1", "2015-12-04 16:57:12", "2015-12-04 16:57:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:57:12", "2015-12-04 16:57:12", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17427", "1", "2015-12-04 16:56:32", "2015-12-04 16:56:32", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:56:32", "2015-12-04 16:56:32", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17426", "1", "2015-12-04 16:55:43", "2015-12-04 16:55:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:55:43", "2015-12-04 16:55:43", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17273", "1", "2015-11-23 08:52:24", "2015-11-23 08:52:24", "", "logo", "", "inherit", "open", "open", "", "logo-3", "", "", "2015-11-23 08:52:24", "2015-11-23 08:52:24", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/11/logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17303", "1", "2015-11-26 10:54:29", "2015-11-26 10:54:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448535267919{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:54:29", "2015-11-26 10:54:29", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17302", "1", "2015-11-26 10:53:20", "2015-11-26 10:53:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:53:20", "2015-11-26 10:53:20", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17304", "1", "2015-11-26 10:55:22", "2015-11-26 10:55:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448535319520{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:55:22", "2015-11-26 10:55:22", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17305", "1", "2015-11-26 10:57:46", "2015-11-26 10:57:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448535464734{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 10:57:46", "2015-11-26 10:57:46", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17306", "1", "2015-11-26 11:18:10", "2015-11-26 11:18:10", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536689068{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:18:10", "2015-11-26 11:18:10", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17307", "1", "2015-11-26 11:19:32", "2015-11-26 11:19:32", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536689068{background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#333c4e\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:19:32", "2015-11-26 11:19:32", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17310", "1", "2015-11-26 11:27:10", "2015-11-26 11:27:10", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:27:10", "2015-11-26 11:27:10", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17314", "1", "2015-11-26 11:32:51", "2015-11-26 11:32:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_adams\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:32:51", "2015-11-26 11:32:51", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17311", "1", "2015-11-26 11:29:53", "2015-11-26 11:29:53", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_adams\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:29:53", "2015-11-26 11:29:53", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17313", "1", "2015-11-26 11:32:15", "2015-11-26 11:32:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_adams\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:32:15", "2015-11-26 11:32:15", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17312", "1", "2015-11-26 11:32:00", "2015-11-26 11:32:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_adams\"][ess_grid alias=\"even_grid_washington\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:32:00", "2015-11-26 11:32:00", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17315", "1", "2015-11-26 11:33:24", "2015-11-26 11:33:24", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\" css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_adams\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:33:24", "2015-11-26 11:33:24", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17316", "1", "2015-11-26 11:33:56", "2015-11-26 11:33:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\" css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:33:56", "2015-11-26 11:33:56", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17319", "1", "2015-11-26 11:37:25", "2015-11-26 11:37:25", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\" css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:37:25", "2015-11-26 11:37:25", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17318", "1", "2015-11-26 11:36:24", "2015-11-26 11:36:24", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\" css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][ess_grid alias=\"even_grid_monroe\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:36:24", "2015-11-26 11:36:24", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17317", "1", "2015-11-26 11:35:14", "2015-11-26 11:35:14", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\" css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][ess_grid alias=\"even_grid_monroe\"][ess_grid alias=\"even_grid_quincy\"][ess_grid alias=\"even_grid_vanburen\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:35:14", "2015-11-26 11:35:14", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17320", "1", "2015-11-26 11:38:21", "2015-11-26 11:38:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537899292{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:38:21", "2015-11-26 11:38:21", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17321", "1", "2015-11-26 11:39:53", "2015-11-26 11:39:53", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:39:53", "2015-11-26 11:39:53", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17322", "1", "2015-11-26 11:41:21", "2015-11-26 11:41:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:41:21", "2015-11-26 11:41:21", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17323", "1", "2015-11-26 11:44:40", "2015-11-26 11:44:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-plus-square\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"][/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:44:40", "2015-11-26 11:44:40", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17324", "1", "2015-11-26 11:46:11", "2015-11-26 11:46:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-plus-square\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:46:11", "2015-11-26 11:46:11", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17325", "1", "2015-11-26 11:46:57", "2015-11-26 11:46:57", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-plus-square\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:46:57", "2015-11-26 11:46:57", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17326", "1", "2015-11-26 11:50:26", "2015-11-26 11:50:26", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:50:26", "2015-11-26 11:50:26", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17327", "1", "2015-11-26 11:51:35", "2015-11-26 11:51:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"32px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:51:35", "2015-11-26 11:51:35", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17328", "1", "2015-11-26 11:52:55", "2015-11-26 11:52:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-3\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:52:55", "2015-11-26 11:52:55", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17329", "1", "2015-11-26 11:53:25", "2015-11-26 11:53:25", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:53:25", "2015-11-26 11:53:25", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17330", "1", "2015-11-26 11:57:06", "2015-11-26 11:57:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:57:06", "2015-11-26 11:57:06", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17332", "1", "2015-11-26 12:00:30", "2015-11-26 12:00:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 12:00:30", "2015-11-26 12:00:30", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17331", "1", "2015-11-26 11:59:11", "2015-11-26 11:59:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 11:59:11", "2015-11-26 11:59:11", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17333", "1", "2015-11-26 14:21:46", "2015-11-26 14:21:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"text-left\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:21:46", "2015-11-26 14:21:46", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17334", "1", "2015-11-26 14:23:34", "2015-11-26 14:23:34", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"0\" nav_align=\"text-left\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:23:34", "2015-11-26 14:23:34", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17335", "1", "2015-11-26 14:26:00", "2015-11-26 14:26:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:26:00", "2015-11-26 14:26:00", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17336", "1", "2015-11-26 14:28:33", "2015-11-26 14:28:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:28:33", "2015-11-26 14:28:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17337", "1", "2015-11-26 14:28:59", "2015-11-26 14:28:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:28:59", "2015-11-26 14:28:59", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17339", "1", "2015-11-26 14:32:56", "2015-11-26 14:32:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:32:56", "2015-11-26 14:32:56", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17338", "1", "2015-11-26 14:30:44", "2015-11-26 14:30:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout4\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:30:44", "2015-11-26 14:30:44", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17340", "1", "2015-11-26 14:33:48", "2015-11-26 14:33:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout2\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:33:48", "2015-11-26 14:33:48", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17341", "1", "2015-11-26 14:36:33", "2015-11-26 14:36:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:36:33", "2015-11-26 14:36:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17344", "1", "2015-11-26 14:40:42", "2015-11-26 14:40:42", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:40:42", "2015-11-26 14:40:42", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17342", "1", "2015-11-26 14:37:58", "2015-11-26 14:37:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.default\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.layout2\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:37:58", "2015-11-26 14:37:58", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17343", "1", "2015-11-26 14:39:15", "2015-11-26 14:39:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.layout2\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:39:15", "2015-11-26 14:39:15", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17345", "1", "2015-11-26 14:45:55", "2015-11-26 14:45:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:45:55", "2015-11-26 14:45:55", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17347", "1", "2015-11-26 14:51:17", "2015-11-26 14:51:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:51:17", "2015-11-26 14:51:17", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17346", "1", "2015-11-26 14:50:44", "2015-11-26 14:50:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 15px 0\" show_team_position=\"0\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:50:44", "2015-11-26 14:50:44", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17348", "1", "2015-11-26 14:54:57", "2015-11-26 14:54:57", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h3\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:54:57", "2015-11-26 14:54:57", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17349", "1", "2015-11-26 14:56:00", "2015-11-26 14:56:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 14:56:00", "2015-11-26 14:56:00", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17350", "1", "2015-11-26 16:13:04", "2015-11-26 16:13:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 16:13:04", "2015-11-26 16:13:04", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17351", "1", "2015-11-26 16:13:50", "2015-11-26 16:13:50", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\" title=\"test\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 16:13:50", "2015-11-26 16:13:50", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17352", "1", "2015-11-26 16:39:08", "2015-11-26 16:39:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 16:39:08", "2015-11-26 16:39:08", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17353", "1", "2015-11-26 17:19:46", "2015-11-26 17:19:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"1\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 17:19:46", "2015-11-26 17:19:46", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17354", "1", "2015-11-26 17:21:46", "2015-11-26 17:21:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 17:21:46", "2015-11-26 17:21:46", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17356", "1", "2015-11-26 17:24:23", "2015-11-26 17:24:23", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 17:24:23", "2015-11-26 17:24:23", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17357", "1", "2015-11-26 22:17:29", "2015-11-26 22:17:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 22:17:29", "2015-11-26 22:17:29", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17358", "1", "2015-11-26 22:21:31", "2015-11-26 22:21:31", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"1\" show_description=\"1\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"1\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 22:21:31", "2015-11-26 22:21:31", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17359", "1", "2015-11-26 22:24:38", "2015-11-26 22:24:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-26 22:24:38", "2015-11-26 22:24:38", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17580", "1", "2015-12-17 16:12:31", "2015-12-17 16:12:31", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 16:12:31", "2015-12-17 16:12:31", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17361", "1", "2015-11-27 08:50:54", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-11-27 08:50:54", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17361", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17367", "1", "2015-11-27 09:20:55", "2015-11-27 09:20:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"1\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 09:20:55", "2015-11-27 09:20:55", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17369", "1", "2015-11-27 09:22:37", "2015-11-27 09:22:37", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.default\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"1\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 09:22:37", "2015-11-27 09:22:37", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17368", "1", "2015-11-27 09:22:15", "2015-11-27 09:22:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_padding=\"\" content_border_radius=\"\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_title_heading=\"\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" excerpt_length_font_size=\"\" show_readmore=\"1\" icon_fontawesome=\"\" read_more=\"Read more\" morelink=\"\" moretext=\"\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 09:22:15", "2015-11-27 09:22:15", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17370", "1", "2015-11-27 09:27:47", "2015-11-27 09:27:47", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"1\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 09:27:47", "2015-11-27 09:27:47", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17384", "1", "2015-11-27 16:32:17", "2015-11-27 16:32:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 16:32:17", "2015-11-27 16:32:17", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17371", "1", "2015-11-27 10:08:44", "2015-11-27 10:08:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"1\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"0\" speed_scroll=\"500\" show_nav=\"0\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 10:08:44", "2015-11-27 10:08:44", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17372", "1", "2015-11-27 10:09:45", "2015-11-27 10:09:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_jefferson\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout1\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"1\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 10:09:45", "2015-11-27 10:09:45", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17386", "1", "2015-11-27 16:53:06", "2015-11-27 16:53:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 16:53:06", "2015-11-27 16:53:06", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17385", "1", "2015-11-27 16:42:51", "2015-11-27 16:42:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"even_grid_adams\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout2\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"1\" show_description=\"1\" show_date=\"1\" date_format=\"M d Y\" date_font_format=\"400\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"1\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 16:42:51", "2015-11-27 16:42:51", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17387", "1", "2015-11-27 16:54:55", "2015-11-27 16:54:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 16:54:55", "2015-11-27 16:54:55", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17388", "1", "2015-11-27 16:57:43", "2015-11-27 16:57:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"clients_grid\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 16:57:43", "2015-11-27 16:57:43", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17389", "1", "2015-11-27 17:12:21", "2015-11-27 17:12:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"clients_grid\"][ess_grid alias=\"masonryblog_jimmycarter\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 17:12:21", "2015-11-27 17:12:21", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17390", "1", "2015-11-27 17:13:56", "2015-11-27 17:13:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"clients_grid\"][ess_grid alias=\"masonryblog_jimmycarter\"][ess_grid alias=\"demo_grid\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 17:13:56", "2015-11-27 17:13:56", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17391", "1", "2015-11-27 17:14:59", "2015-11-27 17:14:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"clients_grid\"][ess_grid alias=\"masonryblog_jimmycarter\"][ess_grid alias=\"demo_grid\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 17:14:59", "2015-11-27 17:14:59", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17393", "1", "2015-11-27 17:27:34", "2015-11-27 17:27:34", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 17:27:34", "2015-11-27 17:27:34", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17392", "1", "2015-11-27 17:26:31", "2015-11-27 17:26:31", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_washington\"][ess_grid alias=\"clients_grid\"][ess_grid alias=\"masonryblog_jimmycarter\"][ess_grid alias=\"demo_grid\"][ess_grid alias=\"even_grid_madison\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 17:26:31", "2015-11-27 17:26:31", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17395", "1", "2015-11-27 23:05:56", "2015-11-27 23:05:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 23:05:56", "2015-11-27 23:05:56", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17394", "1", "2015-11-27 22:27:52", "2015-11-27 22:27:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-portfolio-carousel heading_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"portfoliocarousel.layout1\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" nav_align=\"vertical-center\" show_pager=\"0\" pager_align=\"pager-left\" overlay_bg_color=\"rgba(255,255,255,0.8)\" item_content_align=\"text-left\" item_content_color=\"#ffffff\" item_bg_color=\"rgba(0,0,0,0.8)\" crop_image=\"0\" show_title=\"1\" item_title_color=\"#ffffff\" show_category=\"0\" show_description=\"0\" excerpt_length=\"100\" show_link=\"0\" show_link_text=\"Launch Project\" show_read_more=\"0\" read_more=\"Read more\" show_popup=\"1\" popup_text=\"Large image\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 22:27:52", "2015-11-27 22:27:52", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17397", "1", "2015-11-27 23:08:30", "2015-11-27 23:08:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 23:08:30", "2015-11-27 23:08:30", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17396", "1", "2015-11-27 23:07:41", "2015-11-27 23:07:41", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 23:07:41", "2015-11-27 23:07:41", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17398", "1", "2015-11-27 23:09:11", "2015-11-27 23:09:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 23:09:11", "2015-11-27 23:09:11", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17399", "1", "2015-11-27 23:11:30", "2015-11-27 23:11:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"1\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 23:11:30", "2015-11-27 23:11:30", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17400", "1", "2015-11-27 23:20:01", "2015-11-27 23:20:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"agency\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-27 23:20:01", "2015-11-27 23:20:01", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17401", "1", "2015-11-30 11:49:27", "2015-11-30 11:49:27", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448536944130{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-11-30 11:49:27", "2015-11-30 11:49:27", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17402", "1", "2015-11-30 11:51:53", "2015-11-30 11:51:53", "", "slide-1", "", "inherit", "open", "open", "", "slide-1", "", "", "2015-11-30 11:51:53", "2015-11-30 11:51:53", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/11/slide-1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17705", "1", "2016-01-11 14:24:08", "2016-01-11 14:24:08", "", "portfolio-6", "", "inherit", "open", "open", "", "portfolio-6", "", "", "2016-01-11 14:24:08", "2016-01-11 14:24:08", "", "1031", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-6.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17404", "1", "2015-11-30 23:21:10", "2015-11-30 23:21:10", "", "portfolio-12", "", "inherit", "open", "open", "", "portfolio-12", "", "", "2015-11-30 23:21:10", "2015-11-30 23:21:10", "", "1019", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-12.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17405", "1", "2015-11-30 23:25:24", "2015-11-30 23:25:24", "", "portfolio-12", "", "inherit", "open", "open", "", "portfolio-12-2", "", "", "2015-11-30 23:25:24", "2015-11-30 23:25:24", "", "1019", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-121.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17406", "1", "2015-11-30 23:25:48", "2015-11-30 23:25:48", "", "portfolio-12", "", "inherit", "open", "open", "", "portfolio-12-3", "", "", "2015-11-30 23:25:48", "2015-11-30 23:25:48", "", "1019", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-122.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17407", "1", "2015-12-01 21:11:57", "2015-12-01 21:11:57", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449004312755{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-01 21:11:57", "2015-12-01 21:11:57", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17408", "1", "2015-12-01 21:13:06", "2015-12-01 21:13:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449004384189{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-01 21:13:06", "2015-12-01 21:13:06", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17409", "1", "2015-12-01 21:16:22", "2015-12-01 21:16:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_bounceInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449004580811{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-01 21:16:22", "2015-12-01 21:16:22", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17410", "1", "2015-12-03 21:46:24", "2015-12-03 21:46:24", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448539227279{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-03 21:46:24", "2015-12-03 21:46:24", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17411", "1", "2015-12-03 22:46:05", "2015-12-03 22:46:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-03 22:46:05", "2015-12-03 22:46:05", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17414", "1", "2015-12-03 16:42:52", "2015-12-03 16:42:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY1\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-03 16:42:52", "2015-12-03 16:42:52", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17413", "1", "2015-12-03 16:29:33", "2015-12-03 16:29:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">We are here to serve you</h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-03 16:29:33", "2015-12-03 16:29:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17415", "1", "2015-12-04 16:15:23", "2015-12-04 16:15:23", "", "portfolio-13", "", "inherit", "open", "open", "", "portfolio-13", "", "", "2015-12-04 16:15:23", "2015-12-04 16:15:23", "", "1003", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-13.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17416", "1", "2015-12-04 16:19:23", "2015-12-04 16:19:23", "", "portfolio-12", "", "inherit", "open", "open", "", "portfolio-12-4", "", "", "2015-12-04 16:19:23", "2015-12-04 16:19:23", "", "1011", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-123.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17418", "1", "2015-12-04 16:22:05", "2015-12-04 16:22:05", "", "portfolio-11", "", "inherit", "open", "open", "", "portfolio-11", "", "", "2015-12-04 16:22:05", "2015-12-04 16:22:05", "", "1015", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-11.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17419", "1", "2015-12-04 16:23:35", "2015-12-04 16:23:35", "", "portfolio-10", "", "inherit", "open", "open", "", "portfolio-10", "", "", "2015-12-04 16:23:35", "2015-12-04 16:23:35", "", "1019", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17421", "1", "2015-12-04 16:25:17", "2015-12-04 16:25:17", "", "portfolio-9", "", "inherit", "open", "open", "", "portfolio-9", "", "", "2015-12-04 16:25:17", "2015-12-04 16:25:17", "", "1023", "http://localhost/mdeal2/wp-content/uploads/2015/01/portfolio-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17425", "1", "2015-12-04 16:55:08", "2015-12-04 16:55:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:55:08", "2015-12-04 16:55:08", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17422", "1", "2015-12-04 16:27:20", "2015-12-04 16:27:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY1\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:27:20", "2015-12-04 16:27:20", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17423", "1", "2015-12-04 16:53:58", "2015-12-04 16:53:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cogs\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FUNCTIONALITY\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:53:58", "2015-12-04 16:53:58", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17424", "1", "2015-12-04 16:54:33", "2015-12-04 16:54:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:54:33", "2015-12-04 16:54:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17429", "1", "2015-12-04 16:57:43", "2015-12-04 16:57:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:57:43", "2015-12-04 16:57:43", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17432", "1", "2015-12-04 17:01:02", "2015-12-04 17:01:02", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248460204{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 17:01:02", "2015-12-04 17:01:02", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17431", "1", "2015-12-04 16:59:32", "2015-12-04 16:59:32", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448549475652{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 16:59:32", "2015-12-04 16:59:32", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17433", "1", "2015-12-04 17:02:23", "2015-12-04 17:02:23", "", "bg-gallery", "", "inherit", "open", "open", "", "bg-gallery", "", "", "2015-12-04 17:02:23", "2015-12-04 17:02:23", "", "17274", "http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17434", "1", "2015-12-04 17:02:29", "2015-12-04 17:02:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248460204{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248548038{padding-top: 50px !important;padding-bottom: 50px !important;background: #f5f5f5 url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 17:02:29", "2015-12-04 17:02:29", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17435", "1", "2015-12-04 17:03:20", "2015-12-04 17:03:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 17:03:20", "2015-12-04 17:03:20", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17436", "1", "2015-12-04 21:02:39", "2015-12-04 21:02:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"14\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:02:39", "2015-12-04 21:02:39", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17437", "1", "2015-12-04 21:04:29", "2015-12-04 21:04:29", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"13\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:04:29", "2015-12-04 21:04:29", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17438", "1", "2015-12-04 21:05:48", "2015-12-04 21:05:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448549441462{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">MEET THE TEAM</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:05:48", "2015-12-04 21:05:48", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17439", "1", "2015-12-04 21:07:36", "2015-12-04 21:07:36", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Testimonials</h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:07:36", "2015-12-04 21:07:36", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17443", "1", "2015-12-04 21:25:49", "2015-12-04 21:25:49", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:25:49", "2015-12-04 21:25:49", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17442", "1", "2015-12-04 21:25:03", "2015-12-04 21:25:03", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448665708042{padding-top: 40px !important;padding-bottom: 50px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Featured video</h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:25:03", "2015-12-04 21:25:03", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17445", "1", "2015-12-04 21:29:48", "2015-12-04 21:29:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:29:48", "2015-12-04 21:29:48", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17448", "1", "2015-12-04 21:36:15", "2015-12-04 21:36:15", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:36:15", "2015-12-04 21:36:15", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17446", "1", "2015-12-04 21:31:30", "2015-12-04 21:31:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449182763060{padding-top: 30px !important;padding-bottom: 30px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:31:30", "2015-12-04 21:31:30", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17447", "1", "2015-12-04 21:33:04", "2015-12-04 21:33:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Latest post</h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:33:04", "2015-12-04 21:33:04", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17449", "1", "2015-12-04 21:37:27", "2015-12-04 21:37:27", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"320\" margin_item=\"30\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:37:27", "2015-12-04 21:37:27", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17450", "1", "2015-12-04 21:39:08", "2015-12-04 21:39:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"320\" height_image=\"240\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 21:39:08", "2015-12-04 21:39:08", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17451", "1", "2015-12-04 15:23:26", "2015-12-04 15:23:26", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"3\" item_slide=\"3\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-04 15:23:26", "2015-12-04 15:23:26", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17472", "1", "2015-12-06 15:32:35", "2015-12-06 15:32:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"9\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"350\" height_list_image=\"260\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 3 COLUMN", "", "publish", "open", "open", "", "blog-page-2-column", "", "", "2015-12-06 15:59:00", "2015-12-06 15:59:00", "", "0", "http://localhost/mdeal2/?page_id=17472", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17452", "1", "2015-12-06 06:17:06", "2015-12-06 06:17:06", "", "gallery-8_3", "", "inherit", "open", "open", "", "gallery-8_3", "", "", "2015-12-06 06:17:06", "2015-12-06 06:17:06", "", "836", "http://localhost/mdeal2/wp-content/uploads/2015/01/gallery-8_3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17453", "1", "2015-12-06 06:25:11", "2015-12-06 06:25:11", "", "gallery-10_3", "", "inherit", "open", "open", "", "gallery-10_3", "", "", "2015-12-06 06:25:11", "2015-12-06 06:25:11", "", "666", "http://localhost/mdeal2/wp-content/uploads/2015/01/gallery-10_3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17454", "1", "2015-12-06 06:26:25", "2015-12-06 06:26:25", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Aliquam faucibus mliquam", "", "inherit", "open", "open", "", "666-revision-v1", "", "", "2015-12-06 06:26:25", "2015-12-06 06:26:25", "", "666", "http://localhost/mdeal2/666-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17455", "1", "2015-12-06 06:30:35", "2015-12-06 06:30:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-06 06:30:35", "2015-12-06 06:30:35", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17456", "1", "2015-12-06 06:32:30", "2015-12-06 06:32:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "phuong", "", "inherit", "open", "open", "", "17274-revision-v1", "", "", "2015-12-06 06:32:30", "2015-12-06 06:32:30", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17457", "1", "2015-12-06 08:53:01", "2015-12-06 08:53:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "PORTFOLIO 3 COLUMNS", "", "publish", "open", "open", "", "17457-2", "", "", "2015-12-06 08:53:28", "2015-12-06 08:53:28", "", "0", "http://localhost/mdeal2/?page_id=17457", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17458", "1", "2015-12-06 08:53:01", "2015-12-06 08:53:01", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "", "", "inherit", "open", "open", "", "17457-revision-v1", "", "", "2015-12-06 08:53:01", "2015-12-06 08:53:01", "", "17457", "http://localhost/mdeal2/17457-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17459", "1", "2015-12-06 08:53:28", "2015-12-06 08:53:28", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "PORTFOLIO 3 COLUMNS", "", "inherit", "open", "open", "", "17457-revision-v1", "", "", "2015-12-06 08:53:28", "2015-12-06 08:53:28", "", "17457", "http://localhost/mdeal2/17457-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17460", "1", "2015-12-06 10:00:07", "2015-12-06 10:00:07", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"portfolio-two-culumns\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison_2_column\"][/vc_column][/vc_row]", "PORTFOLIO 2 COLUMNS", "", "publish", "open", "open", "", "portfolio-2-columns", "", "", "2015-12-06 14:37:39", "2015-12-06 14:37:39", "", "0", "http://localhost/mdeal2/?page_id=17460", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17464", "1", "2015-12-06 10:04:07", "2015-12-06 10:04:07", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"portfolio-two-culumns\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "PORTFOLIO 2 COLUMNS", "", "inherit", "open", "open", "", "17460-revision-v1", "", "", "2015-12-06 10:04:07", "2015-12-06 10:04:07", "", "17460", "http://localhost/mdeal2/17460-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17461", "1", "2015-12-06 10:00:07", "2015-12-06 10:00:07", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"\" settings=\"\" layers=\"\" special=\"\"][/vc_column][/vc_row]", "PORTFOLIO 2 COLUMNS", "", "inherit", "open", "open", "", "17460-revision-v1", "", "", "2015-12-06 10:00:07", "2015-12-06 10:00:07", "", "17460", "http://localhost/mdeal2/17460-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17462", "1", "2015-12-06 10:00:16", "2015-12-06 10:00:16", "<p>[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"\" settings=\"\" layers=\"\" special=\"\"][/vc_column][/vc_row]</p>\n", "PORTFOLIO 2 COLUMNS", "", "inherit", "open", "open", "", "17460-autosave-v1", "", "", "2015-12-06 10:00:16", "2015-12-06 10:00:16", "", "17460", "http://localhost/mdeal2/17460-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17463", "1", "2015-12-06 10:01:12", "2015-12-06 10:01:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row]", "PORTFOLIO 2 COLUMNS", "", "inherit", "open", "open", "", "17460-revision-v1", "", "", "2015-12-06 10:01:12", "2015-12-06 10:01:12", "", "17460", "http://localhost/mdeal2/17460-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17465", "1", "2015-12-06 10:11:50", "2015-12-06 10:11:50", "", "logo", "", "inherit", "open", "open", "", "logo-4", "", "", "2015-12-06 10:11:50", "2015-12-06 10:11:50", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/12/logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("17466", "1", "2015-12-06 14:37:39", "2015-12-06 14:37:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"portfolio-two-culumns\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][ess_grid alias=\"even_grid_madison_2_column\"][/vc_column][/vc_row]", "PORTFOLIO 2 COLUMNS", "", "inherit", "open", "open", "", "17460-revision-v1", "", "", "2015-12-06 14:37:39", "2015-12-06 14:37:39", "", "17460", "http://localhost/mdeal2/17460-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17467", "1", "2015-12-06 14:48:51", "2015-12-06 14:48:51", " ", "", "", "publish", "open", "closed", "", "17467", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17467", "16", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17468", "1", "2015-12-06 14:48:51", "2015-12-06 14:48:51", "", "PORTFOLIO", "", "publish", "open", "closed", "", "portfolio", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17468", "15", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17469", "1", "2015-12-06 14:48:51", "2015-12-06 14:48:51", " ", "", "", "publish", "open", "closed", "", "17469", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17469", "17", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17470", "1", "2015-12-06 14:56:04", "2015-12-06 14:56:04", " ", "", "", "publish", "open", "closed", "", "home", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17470", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17473", "1", "2015-12-06 15:32:35", "2015-12-06 15:32:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"1\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:32:35", "2015-12-06 15:32:35", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17474", "1", "2015-12-06 15:34:04", "2015-12-06 15:34:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:34:04", "2015-12-06 15:34:04", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17475", "1", "2015-12-06 15:38:21", "2015-12-06 15:38:21", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:38:21", "2015-12-06 15:38:21", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17476", "1", "2015-12-06 15:39:57", "2015-12-06 15:39:57", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"570\" height_list_image=\"427\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:39:57", "2015-12-06 15:39:57", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17477", "1", "2015-12-06 15:42:05", "2015-12-06 15:42:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"370\" height_list_image=\"277\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-autosave-v1", "", "", "2015-12-06 15:42:05", "2015-12-06 15:42:05", "", "17472", "http://localhost/mdeal2/17472-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17478", "1", "2015-12-06 15:43:36", "2015-12-06 15:43:36", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"9\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"300\" height_list_image=\"250\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:43:36", "2015-12-06 15:43:36", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17479", "1", "2015-12-06 15:44:11", "2015-12-06 15:44:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"9\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"330\" height_list_image=\"260\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:44:11", "2015-12-06 15:44:11", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17480", "1", "2015-12-06 15:44:52", "2015-12-06 15:44:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"9\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"350\" height_list_image=\"260\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:44:52", "2015-12-06 15:44:52", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17481", "1", "2015-12-06 15:58:21", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-12-06 15:58:21", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17481", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17482", "1", "2015-12-06 15:59:00", "2015-12-06 15:59:00", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"9\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"350\" height_list_image=\"260\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row]", "BLOG PAGE 3 COLUMN", "", "inherit", "open", "open", "", "17472-revision-v1", "", "", "2015-12-06 15:59:00", "2015-12-06 15:59:00", "", "17472", "http://localhost/mdeal2/17472-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17483", "1", "2015-12-06 16:01:28", "2015-12-06 16:01:28", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"10\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"550\" height_list_image=\"420\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout3\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "publish", "open", "open", "", "blog-page-2-column-2", "", "", "2015-12-06 16:04:35", "2015-12-06 16:04:35", "", "0", "http://localhost/mdeal2/?page_id=17483", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17484", "1", "2015-12-06 16:01:28", "2015-12-06 16:01:28", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"10\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"570\" height_list_image=\"428\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout3\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17483-revision-v1", "", "", "2015-12-06 16:01:28", "2015-12-06 16:01:28", "", "17483", "http://localhost/mdeal2/17483-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17486", "1", "2015-12-06 16:04:35", "2015-12-06 16:04:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"10\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"550\" height_list_image=\"420\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout3\"][/vc_column][/vc_row]", "BLOG PAGE 2 COLUMN", "", "inherit", "open", "open", "", "17483-revision-v1", "", "", "2015-12-06 16:04:35", "2015-12-06 16:04:35", "", "17483", "http://localhost/mdeal2/17483-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17487", "1", "2015-12-08 15:33:34", "2015-12-08 15:33:34", "", "Post", "", "publish", "open", "closed", "", "post", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17487", "21", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17488", "1", "2015-12-08 15:33:34", "2015-12-08 15:33:34", " ", "", "", "publish", "open", "closed", "", "17488", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17488", "23", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17489", "1", "2015-12-08 15:33:34", "2015-12-08 15:33:34", " ", "", "", "publish", "open", "closed", "", "17489", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17489", "22", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17490", "1", "2015-12-08 15:37:19", "2015-12-08 15:37:19", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"8\" date_format=\"F jS Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"420\" height_list_image=\"315\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout4\"][/vc_column][/vc_row]", "BLOG LIST", "", "publish", "open", "open", "", "blog-list", "", "", "2015-12-08 16:14:04", "2015-12-08 16:14:04", "", "0", "http://localhost/mdeal2/?page_id=17490", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17491", "1", "2015-12-08 15:37:19", "2015-12-08 15:37:19", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"1\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout3\"][/vc_column][/vc_row]", "BLOG LIST", "", "inherit", "open", "open", "", "17490-revision-v1", "", "", "2015-12-08 15:37:19", "2015-12-08 15:37:19", "", "17490", "http://localhost/mdeal2/17490-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17492", "1", "2015-12-08 15:38:17", "2015-12-08 15:38:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"70\" height_list_image=\"70\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout4\"][/vc_column][/vc_row]", "BLOG LIST", "", "inherit", "open", "open", "", "17490-revision-v1", "", "", "2015-12-08 15:38:17", "2015-12-08 15:38:17", "", "17490", "http://localhost/mdeal2/17490-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17493", "1", "2015-12-08 15:38:58", "2015-12-08 15:38:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"5\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"420\" height_list_image=\"315\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout4\"][/vc_column][/vc_row]", "BLOG LIST", "", "inherit", "open", "open", "", "17490-revision-v1", "", "", "2015-12-08 15:38:58", "2015-12-08 15:38:58", "", "17490", "http://localhost/mdeal2/17490-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17494", "1", "2015-12-08 16:13:34", "2015-12-08 16:13:34", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"8\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"420\" height_list_image=\"315\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout4\"][/vc_column][/vc_row]", "BLOG LIST", "", "inherit", "open", "open", "", "17490-revision-v1", "", "", "2015-12-08 16:13:34", "2015-12-08 16:13:34", "", "17490", "http://localhost/mdeal2/17490-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17495", "1", "2015-12-08 16:14:04", "2015-12-08 16:14:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-magazine-posts heading_size=\"h1\" title_transform=\"inherit\" item_per_page=\"8\" date_format=\"F jS Y\" show_feature=\"0\" show_type=\"1\" show_image=\"1\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"1\" show_description=\"1\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"420\" height_list_image=\"315\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout4\"][/vc_column][/vc_row]", "BLOG LIST", "", "inherit", "open", "open", "", "17490-revision-v1", "", "", "2015-12-08 16:14:04", "2015-12-08 16:14:04", "", "17490", "http://localhost/mdeal2/17490-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17496", "1", "2015-12-08 16:24:40", "2015-12-08 16:24:40", "<div class=\"big-title text-center\">\r\n<h1>We Have Nice Accordion Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\" text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"ukqdiqbvrwdkb\" href=\"#77611112\" title=\"Click to Continue > by DealXplorer\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin: 20px 0;\"></div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Heading</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<h1>h1 – Heading 1</h1>\r\n<h2>h2 – Heading 2</h2>\r\n<h3>h3 – heading 3</h3>\r\n<h4>h4 – heading 4</h4>\r\n<h5>h5 – heading 5</h5>\r\n<h6>h6 – heading 6</h6>\r\n<hr><h1>h1. Heading <small>Secondary text</small></h1>\r\n<h2>h2. Heading <small>Secondary text</small></h2>\r\n<h3>h3. Heading <small>Secondary text</small></h3>\r\n<h4>h4. Heading <small>Secondary text</small></h4>\r\n<h5>h5. Heading <small>Secondary text</small></h5>\r\n<h6>h6. Heading <small>Secondary text</small></h6>\r\n</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Paragraph</h3>\r\n</div>\r\n<div class=\"panel-body\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam lectus justo, vulputate eget mollis sed, tempor sed magna. Praesent dapibus. Fusce suscipit libero eget elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Morbi scelerisque luctus velit. Maecenas libero. Praesent vitae arcu tempor neque lacinia pretium. Aliquam ornare wisi eu metus. Etiam dui sem, fermentum vitae, sagittis id, malesuada in, quam. Mauris dolor felis, sagittis at, luctus sed, aliquam non, tellus. Etiam posuere lacus quis dolor.</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Colors text</h3>\r\n</div>\r\n<div class=\"panel-body \">\r\n<p class=\"text-muted\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-primary\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-success\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-info\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-warning\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-danger\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Lists</h3>\r\n</div>\r\n<div class=\"panel-body \">\r\n<h4>Unordered</h4>\r\n<ul><li>Aliquam erat volutpat</li>\r\n<li>Quisque porta</li>\r\n<li>Nemo enim ipsam voluptatem quia</li>\r\n<li>Coluptas sit\r\n<ul><li>Qoluptas sit</li>\r\n<li>Raesent vitae arcu</li>\r\n<li>Qoluptas sit</li>\r\n</ul></li>\r\n<li>Nullam faucibus mi quis velit</li>\r\n</ul><hr><h4>Ordered</h4>\r\n<ol><li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Coluptas ipsam voluptatem</li>\r\n<li>Nullam faucibus mi</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n</ol><hr><h4>Unstyled</h4>\r\n<ul class=\"list-unstyled\"><li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Coluptas ipsam voluptatem</li>\r\n<li>Nullam faucibus mi</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n</ul><hr><h4>Horizontal description</h4>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><hr><h4>Description</h4>\r\n<dl><dt>Aliquam faucibus</dt>\r\n<dd>Coluptas ipsam ptas sam</dd>\r\n<dt>Aliquam faucibus</dt>\r\n<dd>Coluptas ipsam ptas sam</dd>\r\n<dt>Aliquam faucibus</dt>\r\n<dd>Coluptas ipsam ptas sam</dd>\r\n</dl></div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Blockquote</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<blockquote><p>\r\nMauris elementum mauris vitae tortor. Curabitur sagittis hendrerit ante. Nullam faucibus mi quis velit. Quisque porta. Duis risus. Sed ac dolor sit amet purus malesuada congue. Nulla accumsan, elit sit amet varius semper.\r\n</p>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<blockquote><p>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. <small>Someone famous in <cite title=\"Source Title\">Source Title</cite> </small>\r\n</p>\r\n</blockquote>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Dropcap</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<p><span class=\"dropcap dropcap-default\">A</span> enean ac dignissim nibh. Suspendisse sapien. Donec in faucibus volutpat, velit in leo ultrices posuere ante a nisl. Sed nec magna. Donec enim luctus diam eu mauris. Pellentesque facilisis. Nulla augue a.</p>\r\n<p><span class=\"dropcap border-dropcap\">A</span> enean ac dignissim nibh. Suspendisse sapien. Donec in faucibus volutpat, velit in leo ultrices posuere ante a nisl. Sed nec magna. Donec enim luctus diam eu mauris. Pellentesque facilisis. Nulla augue a.</p>\r\n</div>\r\n</div>\r\n", "Typography", "", "publish", "open", "open", "", "typography", "", "", "2015-12-08 16:25:29", "2015-12-08 16:25:29", "", "0", "http://localhost/mdeal2/?page_id=17496", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17497", "1", "2015-12-08 16:24:25", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-12-08 16:24:25", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17497", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17498", "1", "2015-12-08 16:24:40", "2015-12-08 16:24:40", "<h1>We Have Nice Accordion Content For <strong>You!</strong></h1>\r\n<p class=\" text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"ukqdiqbvrwdkb\" title=\"Click to Continue &gt; by DealXplorer\" href=\"#77611112\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\" alt=\"\" /></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin: 20px 0;\"></div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Heading</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<h1>h1 – Heading 1</h1>\r\n<h2>h2 – Heading 2</h2>\r\n<h3>h3 – heading 3</h3>\r\n<h4>h4 – heading 4</h4>\r\n<h5>h5 – heading 5</h5>\r\n<h6>h6 – heading 6</h6>\r\n\r\n<hr />\r\n\r\n<h1>h1. Heading <small>Secondary text</small></h1>\r\n<h2>h2. Heading <small>Secondary text</small></h2>\r\n<h3>h3. Heading <small>Secondary text</small></h3>\r\n<h4>h4. Heading <small>Secondary text</small></h4>\r\n<h5>h5. Heading <small>Secondary text</small></h5>\r\n<h6>h6. Heading <small>Secondary text</small></h6>\r\n</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Paragraph</h3>\r\n</div>\r\n<div class=\"panel-body\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam lectus justo, vulputate eget mollis sed, tempor sed magna. Praesent dapibus. Fusce suscipit libero eget elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Morbi scelerisque luctus velit. Maecenas libero. Praesent vitae arcu tempor neque lacinia pretium. Aliquam ornare wisi eu metus. Etiam dui sem, fermentum vitae, sagittis id, malesuada in, quam. Mauris dolor felis, sagittis at, luctus sed, aliquam non, tellus. Etiam posuere lacus quis dolor.</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Colors text</h3>\r\n</div>\r\n<div class=\"panel-body \">\r\n<p class=\"text-muted\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-primary\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-success\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-info\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-warning\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-danger\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n\r\n</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Lists</h3>\r\n</div>\r\n<div class=\"panel-body \">\r\n<h4>Unordered</h4>\r\n<ul>\r\n	<li>Aliquam erat volutpat</li>\r\n	<li>Quisque porta</li>\r\n	<li>Nemo enim ipsam voluptatem quia</li>\r\n	<li>Coluptas sit\r\n<ul>\r\n	<li>Qoluptas sit</li>\r\n	<li>Raesent vitae arcu</li>\r\n	<li>Qoluptas sit</li>\r\n</ul>\r\n</li>\r\n	<li>Nullam faucibus mi quis velit</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h4>Ordered</h4>\r\n<ol>\r\n	<li>Quisque ipsam voluptatem</li>\r\n	<li>Aliquam faucibus mi</li>\r\n	<li>Nullam Raesent</li>\r\n	<li>Coluptas ipsam voluptatem</li>\r\n	<li>Nullam faucibus mi</li>\r\n	<li>Aliquam faucibus mi</li>\r\n	<li>Nullam Raesent</li>\r\n	<li>Quisque ipsam voluptatem</li>\r\n	<li>Aliquam faucibus mi</li>\r\n</ol>\r\n\r\n<hr />\r\n\r\n<h4>Unstyled</h4>\r\n<ul class=\"list-unstyled\">\r\n	<li>Quisque ipsam voluptatem</li>\r\n	<li>Aliquam faucibus mi</li>\r\n	<li>Nullam Raesent</li>\r\n	<li>Coluptas ipsam voluptatem</li>\r\n	<li>Nullam faucibus mi</li>\r\n	<li>Aliquam faucibus mi</li>\r\n	<li>Nullam Raesent</li>\r\n	<li>Quisque ipsam voluptatem</li>\r\n	<li>Aliquam faucibus mi</li>\r\n</ul>\r\n\r\n<hr />\r\n\r\n<h4>Horizontal description</h4>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>\r\n\r\n<hr />\r\n\r\n<h4>Description</h4>\r\n<dl><dt>Aliquam faucibus</dt><dd>Coluptas ipsam ptas sam</dd><dt>Aliquam faucibus</dt><dd>Coluptas ipsam ptas sam</dd><dt>Aliquam faucibus</dt><dd>Coluptas ipsam ptas sam</dd></dl></div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Blockquote</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<blockquote>Mauris elementum mauris vitae tortor. Curabitur sagittis hendrerit ante. Nullam faucibus mi quis velit. Quisque porta. Duis risus. Sed ac dolor sit amet purus malesuada congue. Nulla accumsan, elit sit amet varius semper.</blockquote>\r\n</div>\r\n</div>\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. <small>Someone famous in <cite title=\"Source Title\">Source Title</cite> </small></blockquote>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Dropcap</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n\r\n<span class=\"dropcap dropcap-default\">A</span> enean ac dignissim nibh. Suspendisse sapien. Donec in faucibus volutpat, velit in leo ultrices posuere ante a nisl. Sed nec magna. Donec enim luctus diam eu mauris. Pellentesque facilisis. Nulla augue a.\r\n\r\n<span class=\"dropcap border-dropcap\">A</span> enean ac dignissim nibh. Suspendisse sapien. Donec in faucibus volutpat, velit in leo ultrices posuere ante a nisl. Sed nec magna. Donec enim luctus diam eu mauris. Pellentesque facilisis. Nulla augue a.\r\n\r\n</div>\r\n</div>", "Typography", "", "inherit", "open", "open", "", "17496-revision-v1", "", "", "2015-12-08 16:24:40", "2015-12-08 16:24:40", "", "17496", "http://localhost/mdeal2/17496-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17499", "1", "2015-12-08 16:25:29", "2015-12-08 16:25:29", "<div class=\"big-title text-center\">\r\n<h1>We Have Nice Accordion Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\" text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"ukqdiqbvrwdkb\" href=\"#77611112\" title=\"Click to Continue > by DealXplorer\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin: 20px 0;\"></div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Heading</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<h1>h1 – Heading 1</h1>\r\n<h2>h2 – Heading 2</h2>\r\n<h3>h3 – heading 3</h3>\r\n<h4>h4 – heading 4</h4>\r\n<h5>h5 – heading 5</h5>\r\n<h6>h6 – heading 6</h6>\r\n<hr><h1>h1. Heading <small>Secondary text</small></h1>\r\n<h2>h2. Heading <small>Secondary text</small></h2>\r\n<h3>h3. Heading <small>Secondary text</small></h3>\r\n<h4>h4. Heading <small>Secondary text</small></h4>\r\n<h5>h5. Heading <small>Secondary text</small></h5>\r\n<h6>h6. Heading <small>Secondary text</small></h6>\r\n</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Paragraph</h3>\r\n</div>\r\n<div class=\"panel-body\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam lectus justo, vulputate eget mollis sed, tempor sed magna. Praesent dapibus. Fusce suscipit libero eget elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Morbi scelerisque luctus velit. Maecenas libero. Praesent vitae arcu tempor neque lacinia pretium. Aliquam ornare wisi eu metus. Etiam dui sem, fermentum vitae, sagittis id, malesuada in, quam. Mauris dolor felis, sagittis at, luctus sed, aliquam non, tellus. Etiam posuere lacus quis dolor.</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Colors text</h3>\r\n</div>\r\n<div class=\"panel-body \">\r\n<p class=\"text-muted\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-primary\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-success\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-info\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-warning\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n<p class=\"text-danger\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>\r\n</div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Lists</h3>\r\n</div>\r\n<div class=\"panel-body \">\r\n<h4>Unordered</h4>\r\n<ul><li>Aliquam erat volutpat</li>\r\n<li>Quisque porta</li>\r\n<li>Nemo enim ipsam voluptatem quia</li>\r\n<li>Coluptas sit\r\n<ul><li>Qoluptas sit</li>\r\n<li>Raesent vitae arcu</li>\r\n<li>Qoluptas sit</li>\r\n</ul></li>\r\n<li>Nullam faucibus mi quis velit</li>\r\n</ul><hr><h4>Ordered</h4>\r\n<ol><li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Coluptas ipsam voluptatem</li>\r\n<li>Nullam faucibus mi</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n</ol><hr><h4>Unstyled</h4>\r\n<ul class=\"list-unstyled\"><li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Coluptas ipsam voluptatem</li>\r\n<li>Nullam faucibus mi</li>\r\n<li>Aliquam faucibus mi</li>\r\n<li>Nullam Raesent</li>\r\n<li>Quisque ipsam voluptatem</li>\r\n<li>Aliquam faucibus mi</li>\r\n</ul><hr><h4>Horizontal description</h4>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><hr><h4>Description</h4>\r\n<dl><dt>Aliquam faucibus</dt>\r\n<dd>Coluptas ipsam ptas sam</dd>\r\n<dt>Aliquam faucibus</dt>\r\n<dd>Coluptas ipsam ptas sam</dd>\r\n<dt>Aliquam faucibus</dt>\r\n<dd>Coluptas ipsam ptas sam</dd>\r\n</dl></div>\r\n</div>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Blockquote</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<blockquote><p>\r\nMauris elementum mauris vitae tortor. Curabitur sagittis hendrerit ante. Nullam faucibus mi quis velit. Quisque porta. Duis risus. Sed ac dolor sit amet purus malesuada congue. Nulla accumsan, elit sit amet varius semper.\r\n</p>\r\n</blockquote>\r\n</div>\r\n</div>\r\n<blockquote><p>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. <small>Someone famous in <cite title=\"Source Title\">Source Title</cite> </small>\r\n</p>\r\n</blockquote>\r\n<div class=\"panel panel-default\">\r\n<div class=\"panel-heading\">\r\n<h3 class=\"panel-title\">Dropcap</h3>\r\n</div>\r\n<div class=\"panel-body\">\r\n<p><span class=\"dropcap dropcap-default\">A</span> enean ac dignissim nibh. Suspendisse sapien. Donec in faucibus volutpat, velit in leo ultrices posuere ante a nisl. Sed nec magna. Donec enim luctus diam eu mauris. Pellentesque facilisis. Nulla augue a.</p>\r\n<p><span class=\"dropcap border-dropcap\">A</span> enean ac dignissim nibh. Suspendisse sapien. Donec in faucibus volutpat, velit in leo ultrices posuere ante a nisl. Sed nec magna. Donec enim luctus diam eu mauris. Pellentesque facilisis. Nulla augue a.</p>\r\n</div>\r\n</div>\r\n", "Typography", "", "inherit", "open", "open", "", "17496-revision-v1", "", "", "2015-12-08 16:25:29", "2015-12-08 16:25:29", "", "17496", "http://localhost/mdeal2/17496-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17500", "1", "2015-12-08 16:28:21", "2015-12-08 16:28:21", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice List Icon For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"zoyiuolx\" href=\"http://s.iktmmny.com/click?v=Vk46MTA0OTU1OjExMDg3OmVycm9yOmYzYTdiM2MyMmUzYmZjOTRmNmJjNzNlOTUwM2YyZTU3OnotMjMwMS01MDAzMzA2MDpnYXZpYXN0aGVtZS5jb206Mjk5NjM0OjMzOTA5NjNkOTNiY2VlOWNjNDhhNDI0MzFjMTIwYTViOmNhYTQ3YmY5NTM5OTRkNTk4YjExNDU3ZGZmYWQ3N2M1OjA6ZGF0YV9zcywxMDQweDE5MjA7ZGF0YV9yYywxO2RhdGFfZmIsbm87OjQ5NDk1OTM&amp;subid=g-50033060-4f5aaf8f73c946a6b055175bc05f078c-&amp;data_ss=1040x1920&amp;data_rc=1&amp;data_fb=no&amp;data_tagname=A&amp;data_ct=text_only&amp;data_clickel=link\" title=\"Click to Continue > by DealXplorer\" target=\"a652c_1449592046_gaviasthemecom\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-4\">\r\n        <ul class=\"icons-list\"><li><a href=\"#\"><i class=\"fa fa-adjust\"></i>fa-adjust</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-anchor\"></i>fa-anchor</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-archive\"></i>fa-archive</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-arrows\"></i>fa-arrows</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-arrows-h\"></i>fa-arrows-h</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-arrows-v\"></i>fa-arrows-v</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-asterisk\"></i>fa-asterisk</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ban\"></i>fa-ban</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bar-chart-o\"></i>fa-bar-chart-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-barcode\"></i>fa-barcode</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bars\"></i>fa-bars</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-beer\"></i>fa-beer</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bell\"></i>fa-bell</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bell-o\"></i>fa-bell-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bolt\"></i>fa-bolt</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-book\"></i>fa-book</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bookmark\"></i>fa-bookmark</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bookmark-o\"></i>fa-bookmark-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-briefcase\"></i>fa-briefcase</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bug\"></i>fa-bug</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-building-o\"></i>fa-building-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bullhorn\"></i>fa-bullhorn</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bullseye\"></i>fa-bullseye</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-calendar\"></i>fa-calendar</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-calendar-o\"></i>fa-calendar-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-camera\"></i>fa-camera</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-camera-retro\"></i>fa-camera-retro</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-down\"></i>fa-caret-square-o-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-left\"></i>fa-caret-square-o-left</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-right\"></i>fa-caret-square-o-right</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-up\"></i>fa-caret-square-o-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-certificate\"></i>fa-certificate</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check\"></i>fa-check</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-circle\"></i>fa-check-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-circle-o\"></i>fa-check-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-square\"></i>fa-check-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-square-o\"></i>fa-check-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-circle\"></i>fa-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-circle-o\"></i>fa-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-clock-o\"></i>fa-clock-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cloud\"></i>fa-cloud</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cloud-download\"></i>fa-cloud-download</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cloud-upload\"></i>fa-cloud-upload</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-code\"></i>fa-code</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-code-fork\"></i>fa-code-fork</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-coffee\"></i>fa-coffee</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cog\"></i>fa-cog</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cogs\"></i>fa-cogs</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comment\"></i>fa-comment</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comment-o\"></i>fa-comment-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comments\"></i>fa-comments</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comments-o\"></i>fa-comments-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-compass\"></i>fa-compass</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-credit-card\"></i>fa-credit-card</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-crop\"></i>fa-crop</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-crosshairs\"></i>fa-crosshairs</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cutlery\"></i>fa-cutlery</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-dashboard\"></i>fa-dashboard </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-desktop\"></i>fa-desktop</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-dot-circle-o\"></i>fa-dot-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-download\"></i>fa-download</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-edit\"></i>fa-edit </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ellipsis-h\"></i>fa-ellipsis-h</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ellipsis-v\"></i>fa-ellipsis-v</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-envelope\"></i>fa-envelope</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-envelope-o\"></i>fa-envelope-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-eraser\"></i>fa-eraser</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exchange\"></i>fa-exchange</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exclamation\"></i>fa-exclamation</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exclamation-circle\"></i>fa-exclamation-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exclamation-triangle\"></i>fa-exclamation-triangle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-external-link\"></i>fa-external-link</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-external-link-square\"></i>fa-external-link-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-eye\"></i>fa-eye</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-eye-slash\"></i>fa-eye-slash</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-female\"></i>fa-female</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-fighter-jet\"></i>fa-fighter-jet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-film\"></i>fa-film</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-filter\"></i>fa-filter</a></li>\r\n        </ul></div>\r\n\r\n    <div class=\"col-md-4\">\r\n        <ul class=\"icons-list\"><li><a href=\"#\"><i class=\"fa fa-fire\"></i>fa-fire</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-fire-extinguisher\"></i>fa-fire-extinguisher</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flag\"></i>fa-flag</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flag-checkered\"></i>fa-flag-checkered</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flag-o\"></i>fa-flag-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flash\"></i>fa-flash</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flask\"></i>fa-flask</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder\"></i>fa-folder</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder-o\"></i>fa-folder-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder-open\"></i>fa-folder-open</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder-open-o\"></i>fa-folder-open-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-frown-o\"></i>fa-frown-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gamepad\"></i>fa-gamepad</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gavel\"></i>fa-gavel</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gear\"></i>fa-gear </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gears\"></i>fa-gears </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gift\"></i>fa-gift</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-glass\"></i>fa-glass</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-globe\"></i>fa-globe</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-group\"></i>fa-group </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-hdd-o\"></i>fa-hdd-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-headphones\"></i>fa-headphones</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-heart\"></i>fa-heart</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-heart-o\"></i>fa-heart-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-home\"></i>fa-home</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-inbox\"></i>fa-inbox</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-info\"></i>fa-info</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-info-circle\"></i>fa-info-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-key\"></i>fa-key</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-keyboard-o\"></i>fa-keyboard-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-laptop\"></i>fa-laptop</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-leaf\"></i>fa-leaf</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-legal\"></i>fa-legal</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-lemon-o\"></i>fa-lemon-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-level-down\"></i>fa-level-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-level-up\"></i>fa-level-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-lightbulb-o\"></i>fa-lightbulb-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-location-arrow\"></i>fa-location-arrow</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-lock\"></i>fa-lock</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-magic\"></i>fa-magic</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-magnet\"></i>fa-magnet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mail-forward\"></i>fa-mail-forward</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mail-reply\"></i>fa-mail-reply </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mail-reply-all\"></i>fa-mail-reply-all</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-male\"></i>fa-male</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-map-marker\"></i>fa-map-marker</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-meh-o\"></i>fa-meh-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-microphone\"></i>fa-microphone</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-microphone-slash\"></i>fa-microphone-slash</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus\"></i>fa-minus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus-circle\"></i>fa-minus-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus-square\"></i>fa-minus-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus-square-o\"></i>fa-minus-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mobile\"></i>fa-mobile</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mobile-phone\"></i>fa-mobile-phone </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-money\"></i>fa-money</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-moon-o\"></i>fa-moon-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-music\"></i>fa-music</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-pencil\"></i>fa-pencil</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-pencil-square\"></i>fa-pencil-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-pencil-square-o\"></i>fa-pencil-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-phone\"></i>fa-phone</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-phone-square\"></i>fa-phone-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-picture-o\"></i>fa-picture-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plane\"></i>fa-plane</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus\"></i>fa-plus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus-circle\"></i>fa-plus-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus-square\"></i>fa-plus-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus-square-o\"></i>fa-plus-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-power-off\"></i>fa-power-off</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-print\"></i>fa-print</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-puzzle-piece\"></i>fa-puzzle-piece</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-qrcode\"></i>fa-qrcode</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-question\"></i>fa-question</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-question-circle\"></i>fa-question-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-quote-left\"></i>fa-quote-left</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-quote-right\"></i>fa-quote-right</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-random\"></i>fa-random</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-refresh\"></i>fa-refresh</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-reply\"></i>fa-reply</a></li>\r\n        </ul></div>\r\n\r\n    <div class=\"col-md-4\">\r\n        <ul class=\"icons-list\"><li><a href=\"#\"><i class=\"fa fa-reply-all\"></i>fa-reply-all</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-retweet\"></i>fa-retweet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-road\"></i>fa-road</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-rocket\"></i>fa-rocket</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-rss\"></i>fa-rss</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-rss-square\"></i>fa-rss-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-search\"></i>fa-search</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-search-minus\"></i>fa-search-minus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-search-plus\"></i>fa-search-plus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-share\"></i>fa-share</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-share-square\"></i>fa-share-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-share-square-o\"></i>fa-share-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-shield\"></i>fa-shield</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-shopping-cart\"></i>fa-shopping-cart</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sign-in\"></i>fa-sign-in</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sign-out\"></i>fa-sign-out</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-signal\"></i>fa-signal</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sitemap\"></i>fa-sitemap</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-smile-o\"></i>fa-smile-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort\"></i>fa-sort</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-alpha-asc\"></i>fa-sort-alpha-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-alpha-desc\"></i>fa-sort-alpha-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-amount-asc\"></i>fa-sort-amount-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-amount-desc\"></i>fa-sort-amount-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-asc\"></i>fa-sort-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-desc\"></i>fa-sort-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-down\"></i>fa-sort-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-numeric-asc\"></i>fa-sort-numeric-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-numeric-desc\"></i>fa-sort-numeric-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-up\"></i>fa-sort-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-spinner\"></i>fa-spinner</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-square\"></i>fa-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-square-o\"></i>fa-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star\"></i>fa-star</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half\"></i>fa-star-half</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half-empty\"></i>fa-star-half-empty </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half-full\"></i>fa-star-half-full </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half-o\"></i>fa-star-half-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-o\"></i>fa-star-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-subscript\"></i>fa-subscript</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-suitcase\"></i>fa-suitcase</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sun-o\"></i>fa-sun-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-superscript\"></i>fa-superscript</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tablet\"></i>fa-tablet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tachometer\"></i>fa-tachometer</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tag\"></i>fa-tag</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tags\"></i>fa-tags</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tasks\"></i>fa-tasks</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-terminal\"></i>fa-terminal</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumb-tack\"></i>fa-thumb-tack</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-down\"></i>fa-thumbs-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-o-down\"></i>fa-thumbs-o-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-o-up\"></i>fa-thumbs-o-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-up\"></i>fa-thumbs-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ticket\"></i>fa-ticket</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-times\"></i>fa-times</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-times-circle\"></i>fa-times-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-times-circle-o\"></i>fa-times-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tint\"></i>fa-tint</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-down\"></i>fa-toggle-down </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-left\"></i>fa-toggle-left</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-right\"></i>fa-toggle-right</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-up\"></i>fa-toggle-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-trash-o\"></i>fa-trash-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-trophy\"></i>fa-trophy</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-truck\"></i>fa-truck</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-umbrella\"></i>fa-umbrella</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-unlock\"></i>fa-unlock</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-unlock-alt\"></i>fa-unlock-alt</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-unsorted\"></i>fa-unsorted </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-upload\"></i>fa-upload</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-user\"></i>fa-user</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-users\"></i>fa-users</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-video-camera\"></i>fa-video-camera</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-volume-down\"></i>fa-volume-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-volume-off\"></i>fa-volume-off</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-volume-up\"></i>fa-volume-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-warning\"></i>fa-warning </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-wheelchair\"></i>fa-wheelchair</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-wrench\"></i>fa-wrench</a></li>\r\n        </ul></div>\r\n</div>\r\n", "LIST ICON", "", "publish", "open", "open", "", "list-icon", "", "", "2015-12-08 16:28:21", "2015-12-08 16:28:21", "", "0", "http://localhost/mdeal2/?page_id=17500", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17501", "1", "2015-12-08 16:28:06", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-12-08 16:28:06", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17501", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17502", "1", "2015-12-08 16:28:21", "2015-12-08 16:28:21", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice List Icon For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"zoyiuolx\" href=\"http://s.iktmmny.com/click?v=Vk46MTA0OTU1OjExMDg3OmVycm9yOmYzYTdiM2MyMmUzYmZjOTRmNmJjNzNlOTUwM2YyZTU3OnotMjMwMS01MDAzMzA2MDpnYXZpYXN0aGVtZS5jb206Mjk5NjM0OjMzOTA5NjNkOTNiY2VlOWNjNDhhNDI0MzFjMTIwYTViOmNhYTQ3YmY5NTM5OTRkNTk4YjExNDU3ZGZmYWQ3N2M1OjA6ZGF0YV9zcywxMDQweDE5MjA7ZGF0YV9yYywxO2RhdGFfZmIsbm87OjQ5NDk1OTM&amp;subid=g-50033060-4f5aaf8f73c946a6b055175bc05f078c-&amp;data_ss=1040x1920&amp;data_rc=1&amp;data_fb=no&amp;data_tagname=A&amp;data_ct=text_only&amp;data_clickel=link\" title=\"Click to Continue > by DealXplorer\" target=\"a652c_1449592046_gaviasthemecom\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-4\">\r\n        <ul class=\"icons-list\"><li><a href=\"#\"><i class=\"fa fa-adjust\"></i>fa-adjust</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-anchor\"></i>fa-anchor</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-archive\"></i>fa-archive</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-arrows\"></i>fa-arrows</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-arrows-h\"></i>fa-arrows-h</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-arrows-v\"></i>fa-arrows-v</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-asterisk\"></i>fa-asterisk</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ban\"></i>fa-ban</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bar-chart-o\"></i>fa-bar-chart-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-barcode\"></i>fa-barcode</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bars\"></i>fa-bars</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-beer\"></i>fa-beer</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bell\"></i>fa-bell</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bell-o\"></i>fa-bell-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bolt\"></i>fa-bolt</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-book\"></i>fa-book</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bookmark\"></i>fa-bookmark</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bookmark-o\"></i>fa-bookmark-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-briefcase\"></i>fa-briefcase</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bug\"></i>fa-bug</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-building-o\"></i>fa-building-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bullhorn\"></i>fa-bullhorn</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-bullseye\"></i>fa-bullseye</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-calendar\"></i>fa-calendar</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-calendar-o\"></i>fa-calendar-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-camera\"></i>fa-camera</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-camera-retro\"></i>fa-camera-retro</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-down\"></i>fa-caret-square-o-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-left\"></i>fa-caret-square-o-left</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-right\"></i>fa-caret-square-o-right</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-caret-square-o-up\"></i>fa-caret-square-o-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-certificate\"></i>fa-certificate</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check\"></i>fa-check</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-circle\"></i>fa-check-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-circle-o\"></i>fa-check-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-square\"></i>fa-check-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-check-square-o\"></i>fa-check-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-circle\"></i>fa-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-circle-o\"></i>fa-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-clock-o\"></i>fa-clock-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cloud\"></i>fa-cloud</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cloud-download\"></i>fa-cloud-download</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cloud-upload\"></i>fa-cloud-upload</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-code\"></i>fa-code</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-code-fork\"></i>fa-code-fork</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-coffee\"></i>fa-coffee</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cog\"></i>fa-cog</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cogs\"></i>fa-cogs</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comment\"></i>fa-comment</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comment-o\"></i>fa-comment-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comments\"></i>fa-comments</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-comments-o\"></i>fa-comments-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-compass\"></i>fa-compass</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-credit-card\"></i>fa-credit-card</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-crop\"></i>fa-crop</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-crosshairs\"></i>fa-crosshairs</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-cutlery\"></i>fa-cutlery</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-dashboard\"></i>fa-dashboard </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-desktop\"></i>fa-desktop</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-dot-circle-o\"></i>fa-dot-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-download\"></i>fa-download</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-edit\"></i>fa-edit </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ellipsis-h\"></i>fa-ellipsis-h</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ellipsis-v\"></i>fa-ellipsis-v</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-envelope\"></i>fa-envelope</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-envelope-o\"></i>fa-envelope-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-eraser\"></i>fa-eraser</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exchange\"></i>fa-exchange</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exclamation\"></i>fa-exclamation</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exclamation-circle\"></i>fa-exclamation-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-exclamation-triangle\"></i>fa-exclamation-triangle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-external-link\"></i>fa-external-link</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-external-link-square\"></i>fa-external-link-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-eye\"></i>fa-eye</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-eye-slash\"></i>fa-eye-slash</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-female\"></i>fa-female</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-fighter-jet\"></i>fa-fighter-jet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-film\"></i>fa-film</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-filter\"></i>fa-filter</a></li>\r\n        </ul></div>\r\n\r\n    <div class=\"col-md-4\">\r\n        <ul class=\"icons-list\"><li><a href=\"#\"><i class=\"fa fa-fire\"></i>fa-fire</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-fire-extinguisher\"></i>fa-fire-extinguisher</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flag\"></i>fa-flag</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flag-checkered\"></i>fa-flag-checkered</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flag-o\"></i>fa-flag-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flash\"></i>fa-flash</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-flask\"></i>fa-flask</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder\"></i>fa-folder</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder-o\"></i>fa-folder-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder-open\"></i>fa-folder-open</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-folder-open-o\"></i>fa-folder-open-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-frown-o\"></i>fa-frown-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gamepad\"></i>fa-gamepad</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gavel\"></i>fa-gavel</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gear\"></i>fa-gear </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gears\"></i>fa-gears </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-gift\"></i>fa-gift</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-glass\"></i>fa-glass</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-globe\"></i>fa-globe</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-group\"></i>fa-group </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-hdd-o\"></i>fa-hdd-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-headphones\"></i>fa-headphones</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-heart\"></i>fa-heart</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-heart-o\"></i>fa-heart-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-home\"></i>fa-home</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-inbox\"></i>fa-inbox</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-info\"></i>fa-info</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-info-circle\"></i>fa-info-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-key\"></i>fa-key</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-keyboard-o\"></i>fa-keyboard-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-laptop\"></i>fa-laptop</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-leaf\"></i>fa-leaf</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-legal\"></i>fa-legal</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-lemon-o\"></i>fa-lemon-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-level-down\"></i>fa-level-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-level-up\"></i>fa-level-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-lightbulb-o\"></i>fa-lightbulb-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-location-arrow\"></i>fa-location-arrow</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-lock\"></i>fa-lock</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-magic\"></i>fa-magic</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-magnet\"></i>fa-magnet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mail-forward\"></i>fa-mail-forward</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mail-reply\"></i>fa-mail-reply </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mail-reply-all\"></i>fa-mail-reply-all</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-male\"></i>fa-male</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-map-marker\"></i>fa-map-marker</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-meh-o\"></i>fa-meh-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-microphone\"></i>fa-microphone</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-microphone-slash\"></i>fa-microphone-slash</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus\"></i>fa-minus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus-circle\"></i>fa-minus-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus-square\"></i>fa-minus-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-minus-square-o\"></i>fa-minus-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mobile\"></i>fa-mobile</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-mobile-phone\"></i>fa-mobile-phone </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-money\"></i>fa-money</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-moon-o\"></i>fa-moon-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-music\"></i>fa-music</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-pencil\"></i>fa-pencil</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-pencil-square\"></i>fa-pencil-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-pencil-square-o\"></i>fa-pencil-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-phone\"></i>fa-phone</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-phone-square\"></i>fa-phone-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-picture-o\"></i>fa-picture-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plane\"></i>fa-plane</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus\"></i>fa-plus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus-circle\"></i>fa-plus-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus-square\"></i>fa-plus-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-plus-square-o\"></i>fa-plus-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-power-off\"></i>fa-power-off</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-print\"></i>fa-print</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-puzzle-piece\"></i>fa-puzzle-piece</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-qrcode\"></i>fa-qrcode</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-question\"></i>fa-question</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-question-circle\"></i>fa-question-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-quote-left\"></i>fa-quote-left</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-quote-right\"></i>fa-quote-right</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-random\"></i>fa-random</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-refresh\"></i>fa-refresh</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-reply\"></i>fa-reply</a></li>\r\n        </ul></div>\r\n\r\n    <div class=\"col-md-4\">\r\n        <ul class=\"icons-list\"><li><a href=\"#\"><i class=\"fa fa-reply-all\"></i>fa-reply-all</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-retweet\"></i>fa-retweet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-road\"></i>fa-road</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-rocket\"></i>fa-rocket</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-rss\"></i>fa-rss</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-rss-square\"></i>fa-rss-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-search\"></i>fa-search</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-search-minus\"></i>fa-search-minus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-search-plus\"></i>fa-search-plus</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-share\"></i>fa-share</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-share-square\"></i>fa-share-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-share-square-o\"></i>fa-share-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-shield\"></i>fa-shield</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-shopping-cart\"></i>fa-shopping-cart</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sign-in\"></i>fa-sign-in</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sign-out\"></i>fa-sign-out</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-signal\"></i>fa-signal</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sitemap\"></i>fa-sitemap</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-smile-o\"></i>fa-smile-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort\"></i>fa-sort</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-alpha-asc\"></i>fa-sort-alpha-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-alpha-desc\"></i>fa-sort-alpha-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-amount-asc\"></i>fa-sort-amount-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-amount-desc\"></i>fa-sort-amount-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-asc\"></i>fa-sort-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-desc\"></i>fa-sort-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-down\"></i>fa-sort-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-numeric-asc\"></i>fa-sort-numeric-asc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-numeric-desc\"></i>fa-sort-numeric-desc</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sort-up\"></i>fa-sort-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-spinner\"></i>fa-spinner</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-square\"></i>fa-square</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-square-o\"></i>fa-square-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star\"></i>fa-star</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half\"></i>fa-star-half</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half-empty\"></i>fa-star-half-empty </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half-full\"></i>fa-star-half-full </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-half-o\"></i>fa-star-half-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-star-o\"></i>fa-star-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-subscript\"></i>fa-subscript</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-suitcase\"></i>fa-suitcase</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-sun-o\"></i>fa-sun-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-superscript\"></i>fa-superscript</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tablet\"></i>fa-tablet</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tachometer\"></i>fa-tachometer</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tag\"></i>fa-tag</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tags\"></i>fa-tags</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tasks\"></i>fa-tasks</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-terminal\"></i>fa-terminal</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumb-tack\"></i>fa-thumb-tack</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-down\"></i>fa-thumbs-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-o-down\"></i>fa-thumbs-o-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-o-up\"></i>fa-thumbs-o-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-thumbs-up\"></i>fa-thumbs-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-ticket\"></i>fa-ticket</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-times\"></i>fa-times</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-times-circle\"></i>fa-times-circle</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-times-circle-o\"></i>fa-times-circle-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-tint\"></i>fa-tint</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-down\"></i>fa-toggle-down </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-left\"></i>fa-toggle-left</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-right\"></i>fa-toggle-right</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-toggle-up\"></i>fa-toggle-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-trash-o\"></i>fa-trash-o</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-trophy\"></i>fa-trophy</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-truck\"></i>fa-truck</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-umbrella\"></i>fa-umbrella</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-unlock\"></i>fa-unlock</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-unlock-alt\"></i>fa-unlock-alt</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-unsorted\"></i>fa-unsorted </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-upload\"></i>fa-upload</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-user\"></i>fa-user</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-users\"></i>fa-users</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-video-camera\"></i>fa-video-camera</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-volume-down\"></i>fa-volume-down</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-volume-off\"></i>fa-volume-off</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-volume-up\"></i>fa-volume-up</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-warning\"></i>fa-warning </a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-wheelchair\"></i>fa-wheelchair</a></li>\r\n            <li><a href=\"#\"><i class=\"fa fa-wrench\"></i>fa-wrench</a></li>\r\n        </ul></div>\r\n</div>\r\n", "LIST ICON", "", "inherit", "open", "open", "", "17500-revision-v1", "", "", "2015-12-08 16:28:21", "2015-12-08 16:28:21", "", "17500", "http://localhost/mdeal2/17500-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17503", "1", "2015-12-08 16:31:19", "2015-12-08 16:31:19", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice Dropcaps Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"oxblkeldwcjgt\" href=\"http://s.iktmmny.com/click?v=Vk46MTA0OTU1OjExMDg3OmVycm9yOmViMDBiMmNmNTQzNTFhNmRhMGVhNjczNmIxMWZhMjFiOnotMjMwMS01MDAzMzA2MDpnYXZpYXN0aGVtZS5jb206Mjk5NjM0OjMzOTA5NjNkOTNiY2VlOWNjNDhhNDI0MzFjMTIwYTViOjUyNDM5M2ZiYjRiOTQ5MzY4NzBiZGY4NzEzMTVmYzA0OjA6ZGF0YV9zcywxMDQweDE5MjA7ZGF0YV9yYywxO2RhdGFfZmIsbm87OjQ5NDk1OTM&amp;subid=g-50033060-12403c9224594796a0eddf5cb4ac7b1f-&amp;data_ss=1040x1920&amp;data_rc=1&amp;data_fb=no&amp;data_tagname=A&amp;data_ct=text_only&amp;data_clickel=link\" title=\"Click to Continue > by DealXplorer\" target=\"a652c_1449592246_gaviasthemecom\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<p><span class=\"dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap border-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap bg-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap border-dropcap circle-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus<a class=\"oxblkeldwcjgt\" href=\"#49608806\" title=\"Click to Continue > by DealXplorer\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap bg-dropcap circle-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div  style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n", "DROPCAPS", "", "publish", "open", "open", "", "dropcaps", "", "", "2015-12-08 16:33:26", "2015-12-08 16:33:26", "", "0", "http://localhost/mdeal2/?page_id=17503", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17504", "1", "2015-12-08 16:31:11", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-12-08 16:31:11", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17504", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17505", "1", "2015-12-08 16:31:19", "2015-12-08 16:31:19", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice Dropcaps Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"oxblkeldwcjgt\" href=\"http://s.iktmmny.com/click?v=Vk46MTA0OTU1OjExMDg3OmVycm9yOmViMDBiMmNmNTQzNTFhNmRhMGVhNjczNmIxMWZhMjFiOnotMjMwMS01MDAzMzA2MDpnYXZpYXN0aGVtZS5jb206Mjk5NjM0OjMzOTA5NjNkOTNiY2VlOWNjNDhhNDI0MzFjMTIwYTViOjUyNDM5M2ZiYjRiOTQ5MzY4NzBiZGY4NzEzMTVmYzA0OjA6ZGF0YV9zcywxMDQweDE5MjA7ZGF0YV9yYywxO2RhdGFfZmIsbm87OjQ5NDk1OTM&amp;subid=g-50033060-12403c9224594796a0eddf5cb4ac7b1f-&amp;data_ss=1040x1920&amp;data_rc=1&amp;data_fb=no&amp;data_tagname=A&amp;data_ct=text_only&amp;data_clickel=link\" title=\"Click to Continue > by DealXplorer\" target=\"a652c_1449592246_gaviasthemecom\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<p><span class=\"dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap border-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap bg-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap border-dropcap circle-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus<a class=\"oxblkeldwcjgt\" href=\"#49608806\" title=\"Click to Continue > by DealXplorer\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap bg-dropcap circle-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n", "DROPCAPS", "", "inherit", "open", "open", "", "17503-revision-v1", "", "", "2015-12-08 16:31:19", "2015-12-08 16:31:19", "", "17503", "http://localhost/mdeal2/17503-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17506", "1", "2015-12-08 16:33:26", "2015-12-08 16:33:26", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice Dropcaps Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"oxblkeldwcjgt\" href=\"http://s.iktmmny.com/click?v=Vk46MTA0OTU1OjExMDg3OmVycm9yOmViMDBiMmNmNTQzNTFhNmRhMGVhNjczNmIxMWZhMjFiOnotMjMwMS01MDAzMzA2MDpnYXZpYXN0aGVtZS5jb206Mjk5NjM0OjMzOTA5NjNkOTNiY2VlOWNjNDhhNDI0MzFjMTIwYTViOjUyNDM5M2ZiYjRiOTQ5MzY4NzBiZGY4NzEzMTVmYzA0OjA6ZGF0YV9zcywxMDQweDE5MjA7ZGF0YV9yYywxO2RhdGFfZmIsbm87OjQ5NDk1OTM&amp;subid=g-50033060-12403c9224594796a0eddf5cb4ac7b1f-&amp;data_ss=1040x1920&amp;data_rc=1&amp;data_fb=no&amp;data_tagname=A&amp;data_ct=text_only&amp;data_clickel=link\" title=\"Click to Continue > by DealXplorer\" target=\"a652c_1449592246_gaviasthemecom\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<p><span class=\"dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap border-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap bg-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap border-dropcap circle-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus<a class=\"oxblkeldwcjgt\" href=\"#49608806\" title=\"Click to Continue > by DealXplorer\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n\r\n<p><span class=\"dropcap bg-dropcap circle-dropcap\">L</span>orem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div  style=\"margin-top: 35px; margin-bottom: 35px;\"></div>\r\n", "DROPCAPS", "", "inherit", "open", "open", "", "17503-revision-v1", "", "", "2015-12-08 16:33:26", "2015-12-08 16:33:26", "", "17503", "http://localhost/mdeal2/17503-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17507", "1", "2015-12-08 16:38:06", "2015-12-08 16:38:06", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button><button class=\"btn btn-danger\" type=\"button\">Danger</button>\r\n<button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button>\r\n<button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button><button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" style=\"margin-bottom: 20px;\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button", "", "publish", "open", "open", "", "button1", "", "", "2015-12-29 15:09:18", "2015-12-29 15:09:18", "", "0", "http://localhost/mdeal2/?page_id=17507", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17684", "1", "2015-12-29 15:03:58", "2015-12-29 15:03:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger\" type=\"button\">Danger</button><button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button><button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button><button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-29 15:03:58", "2015-12-29 15:03:58", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17683", "1", "2015-12-29 15:01:39", "2015-12-29 15:01:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-primary\" type=\"button\">Primary</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger\" type=\"button\">Danger</button><button class=\"btn btn-primary btn-sm\" type=\"button\">Primary</button><button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button><button class=\"btn btn-default btn-xs\" type=\"button\">Default</button><button class=\"btn btn-primary btn-xs\" type=\"button\">Primary</button><button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-29 15:01:39", "2015-12-29 15:01:39", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17533", "1", "2015-12-12 01:23:05", "2015-12-12 01:23:05", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-default btn-lg\" type=\"button\">Default</button><button class=\"btn btn-primary btn-lg\" type=\"button\">Primary</button><button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-default\" type=\"button\">Default</button><button class=\"btn btn-primary\" type=\"button\">Primary</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger\" type=\"button\">Danger</button><button class=\"btn btn-default btn-sm\" type=\"button\">Default</button><button class=\"btn btn-primary btn-sm\" type=\"button\">Primary</button><button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button><button class=\"btn btn-default btn-xs\" type=\"button\">Default</button><button class=\"btn btn-primary btn-xs\" type=\"button\">Primary</button><button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button1", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-12 01:23:05", "2015-12-12 01:23:05", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17508", "1", "2015-12-08 16:38:01", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2015-12-08 16:38:01", "0000-00-00 00:00:00", "", "0", "http://localhost/mdeal2/?page_id=17508", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17509", "1", "2015-12-08 16:38:06", "2015-12-08 16:38:06", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"auodlzfw\" href=\"#92199039\" title=\"Click to Continue > by DealXplorer\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\"></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<p>\r\n    <a href=\"#\" class=\"btn-system btn-large\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-large\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini\"><i class=\"fa fa-heart\"></i>Button</a>\r\n</p>\r\n\r\n<p>\r\n    <a href=\"#\" class=\"btn-system btn-large btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-large btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n</p>\r\n\r\n<p>\r\n    <a href=\"#\" class=\"btn-system btn-large border-btn btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium border-btn btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small border-btn btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini border-btn btn-gray\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-large border-btn btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium border-btn btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small border-btn btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini border-btn btn-gray\"><i class=\"fa fa-heart\"></i>Button</a>\r\n</p>\r\n\r\n<p>\r\n    <a href=\"#\" class=\"btn-system btn-large btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-large btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n</p>\r\n\r\n<p>\r\n    <a href=\"#\" class=\"btn-system btn-large border-btn btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium border-btn btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small border-btn btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini border-btn btn-black\">Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-large border-btn btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-medium border-btn btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-small border-btn btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n    <a href=\"#\" class=\"btn-system btn-mini border-btn btn-black\"><i class=\"fa fa-heart\"></i>Button</a>\r\n</p>\r\n\r\n\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n\r\n\r\n<h4 class=\"classic-title\"><span>Bootstrap Buttons</span></h4>\r\n\r\n<p>\r\n    <button type=\"button\" class=\"btn btn-default btn-lg\">Default</button>\r\n    <button type=\"button\" class=\"btn btn-primary btn-lg\">Primary</button>\r\n    <button type=\"button\" class=\"btn btn-success btn-lg\">Success</button>\r\n    <button type=\"button\" class=\"btn btn-info btn-lg\">Info</button>\r\n    <button type=\"button\" class=\"btn btn-warning btn-lg\">Warning</button>\r\n    <button type=\"button\" class=\"btn btn-danger btn-lg\">Danger</button>\r\n</p>\r\n\r\n<p>\r\n    <button type=\"button\" class=\"btn btn-default\">Default</button>\r\n    <button type=\"button\" class=\"btn btn-primary\">Primary</button>\r\n    <button type=\"button\" class=\"btn btn-success\">Success</button>\r\n    <button type=\"button\" class=\"btn btn-info\">Info</button>\r\n    <button type=\"button\" class=\"btn btn-warning\">Warning</button>\r\n    <button type=\"button\" class=\"btn btn-danger\">Danger</button>\r\n</p>\r\n\r\n\r\n<p>\r\n    <button type=\"button\" class=\"btn btn-default btn-sm\">Default</button>\r\n    <button type=\"button\" class=\"btn btn-primary btn-sm\">Primary</button>\r\n    <button type=\"button\" class=\"btn btn-success btn-sm\">Success</button>\r\n    <button type=\"button\" class=\"btn btn-info btn-sm\">Info</button>\r\n    <button type=\"button\" class=\"btn btn-warning btn-sm\">Warning</button>\r\n    <button type=\"button\" class=\"btn btn-danger btn-sm\">Danger</button>\r\n</p>\r\n\r\n\r\n<p>\r\n    <button type=\"button\" class=\"btn btn-default btn-xs\">Default</button>\r\n    <button type=\"button\" class=\"btn btn-primary btn-xs\">Primary</button>\r\n    <button type=\"button\" class=\"btn btn-success btn-xs\">Success</button>\r\n    <button type=\"button\" class=\"btn btn-info btn-xs\">Info</button>\r\n    <button type=\"button\" class=\"btn btn-warning btn-xs\">Warning</button>\r\n    <button type=\"button\" class=\"btn btn-danger btn-xs\">Danger</button>\r\n</p>\r\n", "Button1", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-08 16:38:06", "2015-12-08 16:38:06", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17511", "1", "2015-12-08 16:48:33", "2015-12-08 16:48:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-default btn-lg\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary btn-lg\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info btn-lg\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button>\r\n\r\n<button class=\"btn btn-default\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger\" type=\"button\">Danger</button>\r\n\r\n<button class=\"btn btn-default btn-sm\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary btn-sm\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success btn-sm\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info btn-sm\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button>\r\n\r\n<button class=\"btn btn-default btn-xs\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary btn-xs\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success btn-xs\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info btn-xs\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Button1", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-08 16:48:33", "2015-12-08 16:48:33", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17510", "1", "2015-12-08 16:46:17", "2015-12-08 16:46:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"big-title text-center\">\r\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus<a class=\"auodlzfw\" title=\"Click to Continue &gt; by DealXplorer\" href=\"#92199039\"> error<img src=\"http://cdncache-a.akamaihd.net/items/it/img/arrow-10x10.png\" alt=\"\" /></a> sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n<a class=\"btn-system btn-large\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-medium\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-small\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-mini\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a>\r\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\r\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\r\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\r\n<button class=\"btn btn-default btn-lg\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary btn-lg\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success btn-lg\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info btn-lg\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button>\r\n\r\n<button class=\"btn btn-default\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger\" type=\"button\">Danger</button>\r\n\r\n<button class=\"btn btn-default btn-sm\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary btn-sm\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success btn-sm\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info btn-sm\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button>\r\n\r\n<button class=\"btn btn-default btn-xs\" type=\"button\">Default</button>\r\n<button class=\"btn btn-primary btn-xs\" type=\"button\">Primary</button>\r\n<button class=\"btn btn-success btn-xs\" type=\"button\">Success</button>\r\n<button class=\"btn btn-info btn-xs\" type=\"button\">Info</button>\r\n<button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button>\r\n<button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>\r\n\r\n[/vc_column_text][/vc_column][/vc_row]", "Button1", "", "inherit", "open", "open", "", "17507-revision-v1", "", "", "2015-12-08 16:46:17", "2015-12-08 16:46:17", "", "17507", "http://localhost/mdeal2/17507-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17512", "1", "2015-12-08 16:54:14", "2015-12-08 16:54:14", "", "Features", "", "publish", "open", "closed", "", "features", "", "", "2016-05-25 04:05:07", "2016-05-25 04:05:07", "", "0", "http://localhost/mdeal2/?p=17512", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("17523", "1", "2015-12-11 13:45:46", "2015-12-11 13:45:46", "", "EXTREME", "", "publish", "closed", "closed", "", "extreme", "", "", "2015-12-11 13:50:19", "2015-12-11 13:50:19", "", "0", "http://localhost/mdeal2/?post_type=pricing&#038;p=17523", "0", "pricing", "", "0");
INSERT INTO `wp_posts` VALUES("17524", "1", "2015-12-11 13:46:55", "2015-12-11 13:46:55", "", "BASIC", "", "inherit", "open", "open", "", "9036-autosave-v1", "", "", "2015-12-11 13:46:55", "2015-12-11 13:46:55", "", "9036", "http://localhost/mdeal2/9036-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17528", "1", "2015-12-11 14:07:40", "2015-12-11 14:07:40", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-12-11 14:07:40", "2015-12-11 14:07:40", "", "3629", "http://localhost/mdeal2/3629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17525", "1", "2015-12-11 13:56:08", "2015-12-11 13:56:08", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"4\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-12-11 13:56:08", "2015-12-11 13:56:08", "", "3629", "http://localhost/mdeal2/3629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17526", "1", "2015-12-11 14:02:31", "2015-12-11 14:02:31", "[vc_row css=\".vc_custom_1418181359028{border-top-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;border-top-color: #eeeeee !important;border-top-style: solid !important;}\" full_width=\"false\" height_engle=\"60px\" height_engle_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\"][cs-pricing heading_size=\"h1\" layout=\"pricing.layout3\" columns=\"3\" orderby=\"none\" button_type=\"btn btn-primary-alt size-default\" order=\"none\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,58\" sub_heading_size=\"h1\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"5\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"4\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" title_pricing_color=\"#888888\" title_background_pricing_color=\"#ffffff\" content_background_pricing_color=\"#ffffff\" category=\"6,56\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Pricing Tables", "", "inherit", "open", "open", "", "3629-revision-v1", "", "", "2015-12-11 14:02:31", "2015-12-11 14:02:31", "", "3629", "http://localhost/mdeal2/3629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17527", "1", "2015-12-11 14:04:28", "2015-12-11 14:04:28", "", "PROMO PACKAGE", "", "inherit", "open", "open", "", "9166-autosave-v1", "", "", "2015-12-11 14:04:28", "2015-12-11 14:04:28", "", "9166", "http://localhost/mdeal2/9166-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17531", "1", "2015-12-12 00:25:41", "2015-12-12 00:25:41", "<div class=\"big-title text-center\">\r\n    <h1>We Have Nice Icon Box Content For <strong>You!</strong></h1>\r\n</div>\r\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\r\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\r\n\r\n<div class=\"row\">\r\n	<div class=\"col-md-4 service-box service-icon-left\">\r\n		<div class=\"service-icon\">\r\n			<i class=\"fa fa-code icon-mini-effect icon-effect-1\"></i>\r\n		</div>\r\n		<div class=\"service-content\">\r\n			<h4>Left Icon Box</h4>\r\n			<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n		</div>\r\n	</div>\r\n\r\n	<div class=\"col-md-4 service-box service-icon-left\">\r\n		<div class=\"service-icon\">\r\n			<i class=\"fa fa-globe icon-mini-effect icon-effect-2\"></i>\r\n		</div>\r\n		<div class=\"service-content\">\r\n			<h4>Left Icon Box</h4>\r\n			<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n		</div>\r\n	</div>\r\n\r\n	<div class=\"col-md-4 service-box service-icon-left\">\r\n		<div class=\"service-icon\">\r\n			<i class=\"fa fa-fire icon-mini-effect icon-effect-2 gray-icon\"></i>\r\n		</div>\r\n		<div class=\"service-content\">\r\n			<h4>Left Icon Box</h4>\r\n			<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n		</div>\r\n	</div>\r\n</div>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>            \r\n			\r\n<div class=\"row\">\r\n    <div class=\"col-md-4 service-box service-icon-left-more\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-bolt icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Left Icon Box</h4>\r\n            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n        </div>\r\n    </div>\r\n \r\n    <div class=\"col-md-4 service-box service-icon-left-more\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Left Icon Box</h4>\r\n            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n        </div>\r\n    </div>\r\n  \r\n    <div class=\"col-md-4 service-box service-icon-left\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-small\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Left Icon Box</h4>\r\n            <p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-medium\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n   \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-large\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<!-- Divider -->\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-medium-effect icon-effect-1\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-medium-effect icon-effect-2\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n    \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-medium-effect icon-effect-1 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n   \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-medium-effect icon-effect-2 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n\r\n</div>\r\n\r\n<!-- Divider -->\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-paperclip icon-large-effect icon-effect-1\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n  \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-briefcase icon-large-effect icon-effect-2\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-globe icon-large-effect icon-effect-1 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-icon\">\r\n            <i class=\"fa fa-leaf icon-large-effect icon-effect-2 gray-icon\"></i>\r\n        </div>\r\n        <div class=\"service-content\">\r\n            <h4>Icon Box</h4>\r\n            <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor.</p>\r\n        </div>\r\n    </div>\r\n</div>\r\n\r\n<!-- Divider -->\r\n<div class=\"hr5\" style=\"margin-top: 15px; margin-bottom: 45px;\"></div>\r\n\r\n<div class=\"row\">\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-paperclip icon-medium-effect icon-effect-1\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n	\r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-briefcase icon-medium-effect icon-effect-2\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-archive icon-medium-effect icon-effect-1 gray-icon\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div>\r\n   \r\n    <div class=\"col-md-3 service-box service-center\">\r\n        <div class=\"service-boxed\">\r\n            <div class=\"service-icon\" style=\"margin-top: -25px;\">\r\n                <i class=\"fa fa-leaf icon-medium-effect icon-effect-2 gray-icon\"></i>\r\n            </div>\r\n            <div class=\"service-content\">\r\n                <h4>Icon Box</h4>\r\n                <p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy text of the printing.</p>\r\n            </div>\r\n        </div>\r\n    </div> </div>", "ICON BOXES", "", "inherit", "open", "open", "", "17530-revision-v1", "", "", "2015-12-12 00:25:41", "2015-12-12 00:25:41", "", "17530", "http://localhost/mdeal2/17530-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17532", "1", "2015-12-29 14:42:55", "2015-12-29 14:42:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\n<div class=\"big-title text-center\">\n<h1>We Have Nice Button Content For <strong>You!</strong></h1>\n</div>\n<p class=\"text-center\">Sed ut perspiciatis unde omnis iste natus sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.</p>\n\n<div class=\"hr5\" style=\"margin-top: 30px; margin-bottom: 30px;\"></div>\n<a class=\"btn-system btn-large\" href=\"#\">Button</a><a class=\"btn-system btn-medium\" href=\"#\">Button</a><a class=\"btn-system btn-small\" href=\"#\">Button</a> <a class=\"btn-system btn-mini\" href=\"#\">Button</a> <a class=\"btn-system btn-large\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\n\n<a class=\"btn-system btn-large btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\n\n<a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\">Button</a> <a class=\"btn-system btn-large border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini border-btn btn-gray\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\n\n<a class=\"btn-system btn-large btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\">Button</a> <a class=\"btn-system btn-large btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-medium btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-small btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a> <a class=\"btn-system btn-mini btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\n\n<a class=\"btn-system btn-large border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\">Button</a><a class=\"btn-system btn-large border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-medium border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-small border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a><a class=\"btn-system btn-mini border-btn btn-black\" href=\"#\"><i class=\"fa fa-heart\"></i>Button</a>\n<div class=\"hr1\" style=\"margin-bottom: 40px;\"></div>\n<h4 class=\"classic-title\">Bootstrap Buttons</h4>\n<button class=\"btn btn-default btn-lg\" type=\"button\">Default</button><button class=\"btn btn-primary btn-lg\" type=\"button\">Primary</button><button class=\"btn btn-success btn-lg\" type=\"button\">Success</button><button class=\"btn btn-info btn-lg\" type=\"button\">Info</button><button class=\"btn btn-warning btn-lg\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-lg\" type=\"button\">Danger</button><button class=\"btn btn-default\" type=\"button\">Default</button><button class=\"btn btn-primary\" type=\"button\">Primary</button><button class=\"btn btn-success\" type=\"button\">Success</button><button class=\"btn btn-info\" type=\"button\">Info</button><button class=\"btn btn-warning\" type=\"button\">Warning</button>\n<button class=\"btn btn-danger\" type=\"button\">Danger</button><button class=\"btn btn-default btn-sm\" type=\"button\">Default</button><button class=\"btn btn-primary btn-sm\" type=\"button\">Primary</button><button class=\"btn btn-success btn-sm\" type=\"button\">Success</button><button class=\"btn btn-info btn-sm\" type=\"button\">Info</button><button class=\"btn btn-warning btn-sm\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-sm\" type=\"button\">Danger</button><button class=\"btn btn-default btn-xs\" type=\"button\">Default</button><button class=\"btn btn-primary btn-xs\" type=\"button\">Primary</button><button class=\"btn btn-success btn-xs\" type=\"button\">Success</button><button class=\"btn btn-info btn-xs\" type=\"button\">Info</button>\n<button class=\"btn btn-warning btn-xs\" type=\"button\">Warning</button><button class=\"btn btn-danger btn-xs\" type=\"button\">Danger</button>[/vc_column_text][/vc_column][/vc_row]", "Button", "", "inherit", "open", "open", "", "17507-autosave-v1", "", "", "2015-12-29 14:42:55", "2015-12-29 14:42:55", "", "17507", "http://localhost/mdeal2/17507-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17534", "1", "2015-12-12 01:27:51", "2015-12-12 01:27:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1452091239833{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "publish", "open", "open", "", "home-2", "", "", "2016-01-06 14:55:50", "2016-01-06 14:55:50", "", "0", "http://localhost/mdeal2/?page_id=17534", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17537", "1", "2015-12-12 01:40:40", "2015-12-12 01:40:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-12 01:40:40", "2015-12-12 01:40:40", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17535", "1", "2015-12-12 01:27:51", "2015-12-12 01:27:51", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]\r\n<p style=\"text-align: center;\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-12 01:27:51", "2015-12-12 01:27:51", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17536", "1", "2016-01-06 14:36:22", "2016-01-06 14:36:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\n<div class=\"pane-content\">\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\n\n</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\n<div class=\"description\">\n\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\n<ul class=\"list-1\">\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\n</ul>\n</div>\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\n</div>\n<div>\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\n</div>\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\n</div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\n</div>\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\n</div>\n<div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\n</div>\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\n</div>\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\n</div>\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\n</div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\" css=\".vc_custom_1450455798684{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text]\n<div class=\"block-title\">\n<h2 class=\"pane-title\"><strong>Special offers</strong></h2>\n</div>\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#444444\" badge_color=\"#444444\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-autosave-v1", "", "", "2016-01-06 14:36:22", "2016-01-06 14:36:22", "", "17534", "http://localhost/mdeal2/17534-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17596", "1", "2015-12-18 16:17:30", "2015-12-18 16:17:30", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450453700599{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"3\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" el_class=\"pricing-style2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<h2 class=\"pane-title\">Special offers</h2>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet</div>\r\n[/vc_column_text][cs-pricing heading_size=\"h1\" sub_heading_size=\"h1\" orderby=\"none\" order=\"none\" layout=\"pricing.layout3\" columns=\"3\" content_align=\"text-center\" show_image=\"0\" show_video=\"0\" button_type=\"btn btn-primary-alt size-default\" category=\"58\" title_pricing_color=\"#888888\" badge_color=\"#888888\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 16:17:30", "2015-12-18 16:17:30", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17547", "1", "2015-12-13 14:41:54", "2015-12-13 14:41:54", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 14:41:54", "2015-12-13 14:41:54", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17546", "1", "2015-12-13 10:05:03", "2015-12-13 10:05:03", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 10:05:03", "2015-12-13 10:05:03", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17538", "1", "2015-12-12 15:08:08", "2015-12-12 15:08:08", "", "slider-2", "", "inherit", "open", "open", "", "slider-2", "", "", "2015-12-12 15:08:08", "2015-12-12 15:08:08", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/12/slider-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17539", "1", "2015-12-12 15:08:17", "2015-12-12 15:08:17", "", "slider-3", "", "inherit", "open", "open", "", "slider-3", "", "", "2015-12-12 15:08:17", "2015-12-12 15:08:17", "", "0", "http://localhost/mdeal2/wp-content/uploads/2015/12/slider-3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17541", "1", "2015-12-13 09:54:59", "2015-12-13 09:54:59", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17419\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 09:54:59", "2015-12-13 09:54:59", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17542", "1", "2015-12-13 09:58:15", "2015-12-13 09:58:15", "", "portfolio-10", "", "inherit", "open", "open", "", "portfolio-10-2", "", "", "2015-12-13 09:58:15", "2015-12-13 09:58:15", "", "17534", "http://localhost/mdeal2/wp-content/uploads/2015/12/portfolio-10.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17543", "1", "2015-12-13 09:58:23", "2015-12-13 09:58:23", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 09:58:23", "2015-12-13 09:58:23", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17545", "1", "2015-12-13 10:02:38", "2015-12-13 10:02:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 10:02:38", "2015-12-13 10:02:38", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17544", "1", "2015-12-13 09:59:44", "2015-12-13 09:59:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448535136139{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">Template Features</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537991722{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1448537964365{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">OUR PROJECT</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 09:59:44", "2015-12-13 09:59:44", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17589", "1", "2015-12-18 15:44:48", "2015-12-18 15:44:48", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RETINA RESOLUTION\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"solid\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#179bb2\" icon_color_hover=\"#ffffff\" icon_bg_color=\"#ffffff\" icon_bg_color_hover=\"#179bb2\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"50%\" border_color=\"#179bb2\" border_color_hover=\"#179bb2\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-18 15:44:48", "2015-12-18 15:44:48", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17548", "1", "2015-12-13 14:48:14", "2015-12-13 14:48:14", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 14:48:14", "2015-12-13 14:48:14", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17549", "1", "2015-12-13 14:51:45", "2015-12-13 14:51:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"random\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 14:51:45", "2015-12-13 14:51:45", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17550", "1", "2015-12-13 15:10:04", "2015-12-13 15:10:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"random\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"20\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 15:10:04", "2015-12-13 15:10:04", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17551", "1", "2015-12-13 15:16:22", "2015-12-13 15:16:22", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"random\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"20\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 15:16:22", "2015-12-13 15:16:22", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17552", "1", "2015-12-13 15:18:56", "2015-12-13 15:18:56", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"20\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 15:18:56", "2015-12-13 15:18:56", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17554", "1", "2015-12-16 15:17:43", "2015-12-16 15:17:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"20\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:17:43", "2015-12-16 15:17:43", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17553", "1", "2015-12-13 15:27:17", "2015-12-13 15:27:17", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"20\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\" digit_prefix=\"900\" digit_suffix=\"999\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-13 15:27:17", "2015-12-13 15:27:17", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17555", "1", "2015-12-16 15:22:52", "2015-12-16 15:22:52", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"20\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"20\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:22:52", "2015-12-16 15:22:52", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17556", "1", "2015-12-16 15:30:09", "2015-12-16 15:30:09", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"26\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"26\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:30:09", "2015-12-16 15:30:09", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17557", "1", "2015-12-16 15:37:54", "2015-12-16 15:37:54", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"26px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"26px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:37:54", "2015-12-16 15:37:54", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17558", "1", "2015-12-16 15:39:45", "2015-12-16 15:39:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:39:45", "2015-12-16 15:39:45", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17559", "1", "2015-12-16 15:55:33", "2015-12-16 15:55:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:55:33", "2015-12-16 15:55:33", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17560", "1", "2015-12-16 15:58:27", "2015-12-16 15:58:27", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281500803{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 15:58:27", "2015-12-16 15:58:27", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17562", "1", "2015-12-16 16:04:12", "2015-12-16 16:04:12", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281500803{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 16:04:12", "2015-12-16 16:04:12", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17561", "1", "2015-12-16 16:00:20", "2015-12-16 16:00:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281500803{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281615684{padding-top: 40px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"946\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" digit_margin=\"\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" icon_size=\"\" icon_color=\"\" align=\"text-left\" box=\"no\" box_width=\"\" box_style=\"\" box_radius=\"\" border_color=\"\" border_color_hover=\"\" background_color=\"\" background_color_hover=\"\" padding_box=\"\" box_counter_width=\"\" box_counter_height=\"\" layout=\"counter.layout1\" extra_class=\"\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 16:00:20", "2015-12-16 16:00:20", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17563", "1", "2015-12-16 16:06:46", "2015-12-16 16:06:46", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-calendar\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 16:06:46", "2015-12-16 16:06:46", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17564", "1", "2015-12-16 16:08:40", "2015-12-16 16:08:40", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 16:08:40", "2015-12-16 16:08:40", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17578", "1", "2015-12-17 15:52:25", "2015-12-17 15:52:25", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:52:25", "2015-12-17 15:52:25", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17573", "1", "2015-12-17 15:39:44", "2015-12-17 15:39:44", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:39:44", "2015-12-17 15:39:44", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17570", "1", "2015-12-17 15:26:11", "2015-12-17 15:26:11", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:26:11", "2015-12-17 15:26:11", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17577", "1", "2015-12-17 15:49:20", "2015-12-17 15:49:20", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"24px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:49:20", "2015-12-17 15:49:20", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17576", "1", "2015-12-17 15:46:43", "2015-12-17 15:46:43", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450367077111{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout6\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"26px\" icon_width=\"64px\" icon_heigth=\"64px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:46:43", "2015-12-17 15:46:43", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17571", "1", "2015-12-17 15:31:19", "2015-12-17 15:31:19", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WE ARE SERVICE</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-17 15:31:19", "2015-12-17 15:31:19", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17565", "1", "2015-12-16 16:14:45", "2015-12-16 16:14:45", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout3\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 16:14:45", "2015-12-16 16:14:45", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17566", "1", "2015-12-16 16:19:38", "2015-12-16 16:19:38", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInLeft\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\"][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_column_text]\r\n<div class=\"heading margin-bottom-10\"><a class=\"title\" href=\"#\">About us</a></div>\r\n<div class=\"description\">\r\n\r\nMorbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra\r\n<ul class=\"list-1\">\r\n	<li><i class=\"fa fa-check\"> </i> Aenean sollicitudin, lorem quis bibendum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Buctor, nisi elit consequat ipsum</li>\r\n	<li><i class=\"fa fa-check\"> </i> Nec sagittis sem nibh id elit.</li>\r\n	<li><i class=\"fa fa-check\"> </i> Duis sed odio sit amet nibh vulputate</li>\r\n	<li><i class=\"fa fa-check\"> </i> Cursus a sit amet mauris</li>\r\n	<li><i class=\"fa fa-check\"> </i> Morbi accumsan ipsum velit</li>\r\n</ul>\r\n</div>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/2\" animation=\"\"][vc_single_image image=\"17542\" border_color=\"grey\" img_link_large=\"\" img_link_target=\"_self\" img_size=\"large\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450001037439{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInRight\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450001096992{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450281952885{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][vc_row_inner exo_same_height=\"no\" css=\".vc_custom_1450281676642{padding-top: 30px !important;}\"][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" icon_fontawesome=\"fa fa-calendar\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text_color=\"#ffffff\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][vc_column_inner el_class=\"\" width=\"1/4\" animation=\"\"][cshero-counter type=\"zero\" digit=\"744\" digit_heading_size=\"div\" digit_font_size=\"18px\" digit_font_color=\"#ffffff\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_color=\"#ffffff\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h1\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" border_style=\"none\" layout=\"fancybox.layout4\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"RESPONSIVE READY\"]Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem Ipsum is simply dummy.[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 2", "", "inherit", "open", "open", "", "17534-revision-v1", "", "", "2015-12-16 16:19:38", "2015-12-16 16:19:38", "", "17534", "http://localhost/mdeal2/17534-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17713", "1", "2016-01-12 15:56:35", "2016-01-12 15:56:35", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "What a Cozy Place", "", "inherit", "closed", "closed", "", "1031-autosave-v1", "", "", "2016-01-12 15:56:35", "2016-01-12 15:56:35", "", "1031", "http://localhost/mdeal2/1031-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17714", "1", "2016-01-12 15:56:41", "2016-01-12 15:56:41", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "BUSINESS CARD BLUE", "", "inherit", "closed", "closed", "", "1023-autosave-v1", "", "", "2016-01-12 15:56:41", "2016-01-12 15:56:41", "", "1023", "http://localhost/mdeal2/1023-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17741", "1", "2016-01-13 01:57:10", "2016-01-13 01:57:10", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Cras consectetur tincidunt", "", "publish", "open", "closed", "", "cras-consectetur-tincidunt", "", "", "2016-01-13 01:57:10", "2016-01-13 01:57:10", "", "0", "http://localhost/mdeal2/?post_type=essential_grid&#038;p=17741", "0", "essential_grid", "", "0");
INSERT INTO `wp_posts` VALUES("17742", "1", "2016-01-13 01:56:08", "2016-01-13 01:56:08", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "The Mobile Revolution is Here", "", "inherit", "closed", "closed", "", "1047-autosave-v1", "", "", "2016-01-13 01:56:08", "2016-01-13 01:56:08", "", "1047", "http://localhost/mdeal2/1047-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17716", "1", "2016-01-12 15:57:02", "2016-01-12 15:57:02", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "Typewriter taken apart", "", "inherit", "closed", "closed", "", "1027-autosave-v1", "", "", "2016-01-12 15:57:02", "2016-01-12 15:57:02", "", "1027", "http://localhost/mdeal2/1027-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17717", "1", "2016-01-12 15:57:03", "2016-01-12 15:57:03", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "Sitting at the Cafe", "", "inherit", "closed", "closed", "", "1011-autosave-v1", "", "", "2016-01-12 15:57:03", "2016-01-12 15:57:03", "", "1011", "http://localhost/mdeal2/1011-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17718", "1", "2016-01-12 15:57:33", "2016-01-12 15:57:33", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "All you need right here", "", "inherit", "closed", "closed", "", "1007-autosave-v1", "", "", "2016-01-12 15:57:33", "2016-01-12 15:57:33", "", "1007", "http://localhost/mdeal2/1007-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17719", "1", "2016-01-12 15:57:33", "2016-01-12 15:57:33", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n", "BOX – EXT. CONTENT", "", "inherit", "closed", "closed", "", "1019-autosave-v1", "", "", "2016-01-12 15:57:33", "2016-01-12 15:57:33", "", "1019", "http://localhost/mdeal2/1019-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17721", "1", "2016-01-12 16:00:58", "2016-01-12 16:00:58", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Deer In The Woods", "", "inherit", "closed", "closed", "", "1332-revision-v1", "", "", "2016-01-12 16:00:58", "2016-01-12 16:00:58", "", "1332", "http://localhost/mdeal2/1332-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17722", "1", "2016-01-12 16:01:03", "2016-01-12 16:01:03", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Bull in a China Shop", "", "inherit", "closed", "closed", "", "1323-revision-v1", "", "", "2016-01-12 16:01:03", "2016-01-12 16:01:03", "", "1323", "http://localhost/mdeal2/1323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17723", "1", "2016-01-12 16:01:08", "2016-01-12 16:01:08", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Sad Trees", "", "inherit", "closed", "closed", "", "385-revision-v1", "", "", "2016-01-12 16:01:08", "2016-01-12 16:01:08", "", "385", "http://localhost/mdeal2/385-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17724", "1", "2016-01-12 16:01:23", "2016-01-12 16:01:23", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Quote Post Type", "", "inherit", "closed", "closed", "", "836-revision-v1", "", "", "2016-01-12 16:01:23", "2016-01-12 16:01:23", "", "836", "http://localhost/mdeal2/836-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17725", "1", "2016-01-12 16:01:49", "2016-01-12 16:01:49", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Aliquam faucibus mliquam", "", "inherit", "closed", "closed", "", "666-autosave-v1", "", "", "2016-01-12 16:01:49", "2016-01-12 16:01:49", "", "666", "http://localhost/mdeal2/666-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17726", "1", "2016-01-12 16:01:57", "2016-01-12 16:01:57", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "Aliquam faucibus mliquam", "", "inherit", "closed", "closed", "", "666-revision-v1", "", "", "2016-01-12 16:01:57", "2016-01-12 16:01:57", "", "666", "http://localhost/mdeal2/666-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17727", "1", "2016-01-12 16:02:08", "2016-01-12 16:02:08", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "ON THE TRACKS", "", "inherit", "closed", "closed", "", "662-revision-v1", "", "", "2016-01-12 16:02:08", "2016-01-12 16:02:08", "", "662", "http://localhost/mdeal2/662-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17728", "1", "2016-01-12 16:02:58", "2016-01-12 16:02:58", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\r\n\r\n[gallery columns=\"2\" size=\"full\" ids=\"742,659\"]", "This is Gallery", "", "inherit", "closed", "closed", "", "664-revision-v1", "", "", "2016-01-12 16:02:58", "2016-01-12 16:02:58", "", "664", "http://localhost/mdeal2/664-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17729", "1", "2016-01-12 16:03:41", "2016-01-12 16:03:41", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "BEARS IN THE WOOD", "", "inherit", "closed", "closed", "", "623-revision-v1", "", "", "2016-01-12 16:03:41", "2016-01-12 16:03:41", "", "623", "http://localhost/mdeal2/623-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17730", "1", "2016-01-12 16:03:46", "2016-01-12 16:03:46", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "HEALTHY BREAKFAST", "", "inherit", "closed", "closed", "", "627-revision-v1", "", "", "2016-01-12 16:03:46", "2016-01-12 16:03:46", "", "627", "http://localhost/mdeal2/627-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17731", "1", "2016-01-12 16:03:55", "2016-01-12 16:03:55", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "VAN IN DISTANCE", "", "inherit", "closed", "closed", "", "633-revision-v1", "", "", "2016-01-12 16:03:55", "2016-01-12 16:03:55", "", "633", "http://localhost/mdeal2/633-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17732", "1", "2016-01-12 16:03:59", "2016-01-12 16:03:59", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "SAND DUNES", "", "inherit", "closed", "closed", "", "630-revision-v1", "", "", "2016-01-12 16:03:59", "2016-01-12 16:03:59", "", "630", "http://localhost/mdeal2/630-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17733", "1", "2016-01-12 16:04:56", "2016-01-12 16:04:56", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "LITTLE BEACH HUT", "", "inherit", "closed", "closed", "", "615-revision-v1", "", "", "2016-01-12 16:04:56", "2016-01-12 16:04:56", "", "615", "http://localhost/mdeal2/615-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17734", "1", "2016-01-12 16:05:01", "2016-01-12 16:05:01", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "LITTLE BOAT TOWN", "", "inherit", "closed", "closed", "", "625-revision-v1", "", "", "2016-01-12 16:05:01", "2016-01-12 16:05:01", "", "625", "http://localhost/mdeal2/625-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17735", "1", "2016-01-12 16:05:05", "2016-01-12 16:05:05", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n", "HOT LAKE SPRINGS", "", "inherit", "closed", "closed", "", "629-revision-v1", "", "", "2016-01-12 16:05:05", "2016-01-12 16:05:05", "", "629", "http://localhost/mdeal2/629-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17736", "1", "2016-01-12 16:11:18", "2016-01-12 16:11:18", "", "404", "", "inherit", "open", "closed", "", "404", "", "", "2016-01-12 16:11:18", "2016-01-12 16:11:18", "", "0", "http://localhost/mdeal2/wp-content/uploads/2016/01/404.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17737", "1", "2016-01-12 16:20:37", "2016-01-12 16:20:37", "", "post-9", "", "inherit", "open", "closed", "", "post-9", "", "", "2016-01-12 16:20:37", "2016-01-12 16:20:37", "", "396", "http://localhost/mdeal2/wp-content/uploads/2014/01/post-9.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17739", "1", "2016-01-12 16:34:04", "2016-01-12 16:34:04", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\" categories=\"13\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-01-12 16:34:04", "2016-01-12 16:34:04", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17738", "1", "2016-01-12 16:32:08", "2016-01-12 16:32:08", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]<p>Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]<p>Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]<p>Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]<p>Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.</p>\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<p><iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe></p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\" categories=\"13,14,15,16,1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-01-12 16:32:08", "2016-01-12 16:32:08", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17740", "1", "2016-01-12 16:36:33", "2016-01-12 16:36:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449179178190{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264782732{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\" categories=\"14,1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-01-12 16:36:33", "2016-01-12 16:36:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17743", "1", "2016-01-21 16:31:55", "2016-01-21 16:31:55", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"slider2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972197839{padding-top: 30px !important;padding-bottom: 25px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450716596346{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" text_align=\"center\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-paperclip\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RESPONSIVE READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-briefcase\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"SEO READY\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-globe\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-leaf\" border_style=\"none\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"56px\" icon_color=\"#000000\" title_color=\"#000000\" border_color=\"#dedede\" icon_width=\"105px\" icon_heigth=\"105px\" title=\"UNLIMITED COLORS\" title_margin=\"10px 0px 30px 0px\" icon_color_hover=\"#179bb2\" icon_animate_type=\"rda_fadeInUp\"]\r\n<p style=\"text-align: center;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450972449665{padding-top: 60px !important;padding-bottom: 60px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1450972493544{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\">PORTFOLIO 3 COLUMNS</h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451231810907{padding-top: 90px !important;padding-bottom: 90px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\" el_class=\"white\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1450972607555{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>WHAT WE DO</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"482\" digit_heading_size=\"div\" text=\"Our Project\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\" digit_font_size=\"18px\" icon_fontawesome=\"fa fa-calendar\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"964\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Our Customers\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-comments\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\"130\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"Wordpress Themes\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-envelope-o\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][vc_column width=\"1/4\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][cshero-counter type=\"zero\" digit=\" 744\" digit_heading_size=\"div\" digit_font_size=\"18px\" text=\"New Updates\" text_size=\"18px\" text_font_weight=\"normal\" text_style=\"none\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-thumbs-o-up\" align=\"text-left\" box=\"no\" layout=\"counter.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451051665157{padding-top: 30px !important;padding-bottom: 20px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451316550172{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\" min_slide=\"1\" max_slide=\"1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1450975238710{padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"1\" layout=\"magazine_posts.layout2\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"5\" item_slide=\"5\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home 3", "", "inherit", "closed", "closed", "", "17605-revision-v1", "", "", "2016-01-21 16:31:55", "2016-01-21 16:31:55", "", "17605", "http://localhost/mdeal2/17605-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17744", "1", "2016-01-22 02:34:26", "2016-01-22 02:34:26", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n<dt>Coluptas ipsam</dt>\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\n\n\n[gallery columns=\"2\" size=\"full\" ids=\"742,659\"]", "This is Gallery", "", "inherit", "closed", "closed", "", "664-autosave-v1", "", "", "2016-01-22 02:34:26", "2016-01-22 02:34:26", "", "664", "http://localhost/mdeal2/664-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17745", "1", "2016-01-22 02:34:47", "2016-01-22 02:34:47", "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.</p>\r\n<blockquote><p>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</p></blockquote>\r\n<ul><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul><ol><li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol><p>Proin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.</p>\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n<dt>Coluptas ipsam</dt>\r\n<dd>Aliquam faucibus mliquam faucibus mi</dd>\r\n</dl><p>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\r\n<p>Vestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.</p>\r\n<p>Etiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.</p>\r\n<p>Nulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.</p>\r\n\r\n\r\n[gallery columns=\"2\" size=\"full\" ids=\"742,659\"]", "Consectetur adipiscing elit", "", "inherit", "closed", "closed", "", "664-revision-v1", "", "", "2016-01-22 02:34:47", "2016-01-22 02:34:47", "", "664", "http://localhost/mdeal2/664-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17747", "1", "2016-08-02 18:07:50", "2016-08-02 18:07:50", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470159169783{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470161701188{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\" categories=\"14,1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-08-02 18:07:50", "2016-08-02 18:07:50", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17748", "1", "2016-09-09 09:34:06", "2016-09-09 09:34:06", "", "SLIDE1", "", "inherit", "open", "closed", "", "slide1", "", "", "2016-09-09 09:34:06", "2016-09-09 09:34:06", "", "0", "http://localhost/mdeal2/wp-content/uploads/2016/09/SLIDE1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17749", "1", "2016-09-09 09:51:53", "2016-09-09 09:51:53", "", "SLIDE3", "", "inherit", "open", "closed", "", "slide3", "", "", "2016-09-09 09:51:53", "2016-09-09 09:51:53", "", "0", "http://localhost/mdeal2/wp-content/uploads/2016/09/SLIDE3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17750", "1", "2016-09-09 09:53:09", "2016-09-09 09:53:09", "", "SLIDE2", "", "inherit", "open", "closed", "", "slide2", "", "", "2016-09-09 09:53:09", "2016-09-09 09:53:09", "", "0", "http://localhost/mdeal2/wp-content/uploads/2016/09/SLIDE2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17752", "1", "2016-09-09 14:15:07", "2016-09-09 14:15:07", "<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <phuongk3a1@gmail.com>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\nphuongk3a@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nMdeal Theme <wordpress@localhost/mdeal2>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "contact5", "", "publish", "closed", "closed", "", "contact", "", "", "2016-09-09 14:36:29", "2016-09-09 14:36:29", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&#038;p=17752", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("17753", "1", "2016-09-09 14:16:11", "2016-09-09 14:16:11", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17752\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact", "", "inherit", "closed", "closed", "", "1482-revision-v1", "", "", "2016-09-09 14:16:11", "2016-09-09 14:16:11", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17754", "1", "2016-09-09 15:08:43", "2016-09-09 15:08:43", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17752\" html_class=\"form-akira contact-style-3\"][/vc_column][/vc_row]", "Contact", "", "inherit", "closed", "closed", "", "1482-revision-v1", "", "", "2016-09-09 15:08:43", "2016-09-09 15:08:43", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17755", "1", "2016-09-09 15:48:06", "2016-09-09 15:48:06", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"1465\" html_class=\"form-akira contact-style-3\"][/vc_column][/vc_row]", "Contact", "", "inherit", "closed", "closed", "", "1482-revision-v1", "", "", "2016-09-09 15:48:06", "2016-09-09 15:48:06", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17756", "1", "2016-09-09 15:53:35", "2016-09-09 15:53:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17752\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "test", "", "publish", "closed", "closed", "", "test", "", "", "2016-09-09 15:54:11", "2016-09-09 15:54:11", "", "0", "http://localhost/mdeal2/?page_id=17756", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17757", "1", "2016-09-09 15:52:59", "2016-09-09 15:52:59", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"1465\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact", "", "inherit", "closed", "closed", "", "1482-revision-v1", "", "", "2016-09-09 15:52:59", "2016-09-09 15:52:59", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17760", "1", "2016-09-12 02:49:31", "2016-09-12 02:49:31", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.\r\n<blockquote>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</blockquote>\r\n<ul>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul>\r\n<ol>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol>\r\nProin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.\r\n\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\nVestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.\r\n\r\nEtiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.\r\n\r\nNulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.", "Idea for project", "", "inherit", "closed", "closed", "", "1332-revision-v1", "", "", "2016-09-12 02:49:31", "2016-09-12 02:49:31", "", "1332", "http://localhost/mdeal2/1332-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17759", "1", "2016-09-09 15:53:35", "2016-09-09 15:53:35", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17752\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "test", "", "inherit", "closed", "closed", "", "17756-revision-v1", "", "", "2016-09-09 15:53:35", "2016-09-09 15:53:35", "", "17756", "http://localhost/mdeal2/17756-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17761", "1", "2016-09-12 02:51:46", "2016-09-12 02:51:46", "", "Graphic-Designer1", "", "inherit", "open", "closed", "", "graphic-designer1", "", "", "2016-09-12 02:51:46", "2016-09-12 02:51:46", "", "1323", "http://localhost/mdeal2/wp-content/uploads/2015/01/Graphic-Designer1.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17762", "1", "2016-09-12 02:52:20", "2016-09-12 02:52:20", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.\r\n<blockquote>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</blockquote>\r\n<ul>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul>\r\n<ol>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol>\r\nProin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.\r\n\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\nVestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.\r\n\r\nEtiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.\r\n\r\nNulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.", "Graphic designer", "", "inherit", "closed", "closed", "", "1323-revision-v1", "", "", "2016-09-12 02:52:20", "2016-09-12 02:52:20", "", "1323", "http://localhost/mdeal2/1323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17763", "1", "2016-09-12 02:53:49", "2016-09-12 02:53:49", "", "work-stations-plus-espresso", "", "inherit", "open", "closed", "", "work-stations-plus-espresso", "", "", "2016-09-12 02:53:49", "2016-09-12 02:53:49", "", "385", "http://localhost/mdeal2/wp-content/uploads/2015/01/work-stations-plus-espresso.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17764", "1", "2016-09-12 02:54:24", "2016-09-12 02:54:24", "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi ac neque at mi elementum gravida et vitae elit. Etiam ullamcorper auctor orci, id luctus felis laoreet a. Nam nec nulla sit amet tellus pretium rhoncus. Integer interdum, nibh sed posuere aliquet, enim ante lacinia augue, ut ultricies augue erat vel lorem. Vestibulum bibendum dolor sit amet tincidunt lacinia. Nunc sapien libero, condimentum et turpis eget, eleifend hendrerit augue. Duis molestie volutpat feugiat.\r\n<blockquote>Nullam elementum semper sollicitudin. Integer nisi eros, vulputate ut venenatis porta, feugiat id ligula. Curabitur ut elit in lacus sodales vestibulum. Ut congue pulvinar tellus, vel auctor tortor gravida et. Curabitur blandit orci eget egestas imperdiet. Morbi quis quam at diam iaculis euismod. Fusce vestibulum elit sed enim lacinia, ut lacinia eros tristique. Nullam id sapien est. Cras consectetur tincidunt neque quis suscipit. In lectus lectus, blandit eget mauris non, scelerisque venenatis tellus.</blockquote>\r\n<ul>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ul>\r\n<ol>\r\n	<li>Proin id lacus non dolor viverra hendrerit vel vel magna.</li>\r\n	<li>Duis iaculis varius urna, nec feugiat enim suscipit vitae.</li>\r\n	<li>Nulla nec enim eget dui posuere tincidunt sit amet venenatis lorem.</li>\r\n</ol>\r\nProin id lacus non dolor viverra hendrerit vel vel magna.Duis iaculis varius urna, nec feugiat enim suscipit vitae.\r\n\r\n<dl class=\"dl-horizontal\"><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd><dt>Coluptas ipsam</dt><dd>Aliquam faucibus mliquam faucibus mi</dd></dl>Donec vel libero ullamcorper, faucibus augue auctor, imperdiet diam. Duis quis nibh eget urna convallis blandit. Fusce iaculis purus vitae convallis aliquet. Ut auctor nunc sed odio bibendum fringilla. Quisque egestas non magna ac tincidunt. Aenean laoreet commodo nulla, sed ultrices odio vehicula sit amet. Suspendisse erat tellus, porta et facilisis sit amet, adipiscing sed diam. Nulla condimentum arcu a pellentesque pretium. Pellentesque pharetra odio eu auctor suscipit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\r\n\r\nVestibulum id diam quis quam porta placerat id vitae metus. Vestibulum id odio tincidunt, vestibulum nisi sit amet, consectetur dui. Ut orci ligula, viverra vel ornare eget, eleifend at est. Sed malesuada fermentum purus, at ornare elit consectetur quis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Cras congue, felis in congue iaculis, elit enim molestie urna, ut accumsan augue magna aliquet nisi. Nullam interdum bibendum magna, eu sagittis metus convallis quis. Pellentesque vehicula purus sit amet tellus pellentesque suscipit. Praesent porttitor turpis et magna interdum, in faucibus mi rutrum. Pellentesque placerat eget elit nec euismod. Mauris tempor cursus dolor. Ut dolor elit, ullamcorper quis ornare vel, congue id orci. In et orci in dolor dapibus sodales ac nec diam.\r\n\r\nEtiam vulputate erat a quam ullamcorper volutpat. Vestibulum vel feugiat sem, non molestie purus. Duis sit amet faucibus ipsum, ac aliquet urna. In hendrerit sit amet dolor vitae semper. In pulvinar, ligula id facilisis aliquam, ante magna tempor lorem, eget molestie metus est et nunc. Maecenas est sapien, consequat quis elementum ac, imperdiet eu libero. Suspendisse sapien elit, convallis ac est in, condimentum tincidunt leo. Curabitur fermentum bibendum venenatis. Aenean ut sem non neque dictum placerat in ut mi. Etiam dignissim, ipsum vitae ullamcorper tincidunt, arcu justo mollis ligula, sed vehicula lectus mi et erat. Etiam ut egestas tortor. Curabitur purus tortor, ornare sed lectus sit amet, blandit congue magna.\r\n\r\nNulla pharetra lacus lorem, sit amet blandit libero vehicula eu. Fusce laoreet, turpis nec semper tempor, enim orci venenatis leo, eleifend dapibus metus felis ac nisl. Vestibulum id placerat urna, porttitor commodo augue. Quisque ac elit nisi. Vestibulum erat erat, sagittis quis magna vel, luctus pellentesque tellus. Donec orci leo, euismod eget ante sit amet, porttitor ornare turpis. Duis vitae neque velit. Mauris iaculis justo in venenatis luctus. Vivamus sed quam sed neque condimentum blandit.", "Work station for designer", "", "inherit", "closed", "closed", "", "385-revision-v1", "", "", "2016-09-12 02:54:24", "2016-09-12 02:54:24", "", "385", "http://localhost/mdeal2/385-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17765", "1", "2016-09-12 02:56:39", "2016-09-12 02:56:39", "", "graphic-design", "", "inherit", "open", "closed", "", "graphic-design", "", "", "2016-09-12 02:56:39", "2016-09-12 02:56:39", "", "394", "http://localhost/mdeal2/wp-content/uploads/2014/12/graphic-design.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17766", "1", "2016-09-12 02:59:51", "2016-09-12 02:59:51", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\" alt=\"waterhouse-lg\" width=\"1640\" height=\"1475\" /></a>", "Color is very important in the Design", "", "inherit", "closed", "closed", "", "394-autosave-v1", "", "", "2016-09-12 02:59:51", "2016-09-12 02:59:51", "", "394", "http://localhost/mdeal2/394-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17767", "1", "2016-09-12 02:57:38", "2016-09-12 02:57:38", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\"><img class=\"alignnone size-full wp-image-1255\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/waterhouse-lg.jpg\" alt=\"waterhouse-lg\" width=\"1640\" height=\"1475\" /></a>", "Color is very important in the Design", "", "inherit", "closed", "closed", "", "394-revision-v1", "", "", "2016-09-12 02:57:38", "2016-09-12 02:57:38", "", "394", "http://localhost/mdeal2/394-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17768", "1", "2016-09-12 02:58:42", "2016-09-12 02:58:42", "", "nicoandlalablog", "", "inherit", "open", "closed", "", "nicoandlalablog", "", "", "2016-09-12 02:58:42", "2016-09-12 02:58:42", "", "839", "http://localhost/mdeal2/wp-content/uploads/2015/01/nicoandlalablog.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17769", "1", "2016-09-12 02:59:12", "2016-09-12 02:59:12", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "work in group", "", "inherit", "closed", "closed", "", "839-revision-v1", "", "", "2016-09-12 02:59:12", "2016-09-12 02:59:12", "", "839", "http://localhost/mdeal2/839-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17770", "1", "2016-09-12 02:59:36", "2016-09-12 02:59:36", "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n<blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</blockquote>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-669\" src=\"http://demo.cmssuperheroes.com/Wordpress/wp-spectrum/wp-content/uploads/2015/01/PostPage-Style1.jpg\" alt=\"PostPage-Style1\" width=\"1466\" height=\"708\" />\r\n\r\n&nbsp;\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.", "Work in group", "", "inherit", "closed", "closed", "", "839-revision-v1", "", "", "2016-09-12 02:59:36", "2016-09-12 02:59:36", "", "839", "http://localhost/mdeal2/839-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17771", "1", "2016-09-12 03:03:23", "2016-09-12 03:03:23", "", "Enjoying every moment at work", "A handsome young man sitting in front of his computer while looking at the camera", "inherit", "open", "closed", "", "enjoying-every-moment-at-work", "", "", "2016-09-12 03:03:23", "2016-09-12 03:03:23", "", "1323", "http://localhost/mdeal2/wp-content/uploads/2015/01/what-do-graphic-designers-do.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("17772", "1", "2016-09-14 07:22:37", "2016-09-14 07:22:37", "<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <wordpress@localhost/mdeal2>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\nphuongk3a@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nMdeal Theme <wordpress@localhost/mdeal2>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "test", "", "publish", "closed", "closed", "", "test", "", "", "2016-09-14 07:22:37", "2016-09-14 07:22:37", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&p=17772", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("17773", "1", "2016-09-14 07:22:57", "2016-09-14 07:22:57", "[vc_row full_width=\"true\" parallax_speed=\"0.1\"][vc_column width=\"1/1\"][cs-extra-map heading_size=\"h1\" address=\"New York, United States\" infowidth=\"200\" type=\"ROADMAP\" zoom=\"13\" width=\"auto\" height=\"460px\" markercoordinate=\"40.7125295,-74.0073676\" style=\"blue-water\" infoclick=\"\" scrollwheel=\"\" pancontrol=\"\" zoomcontrol=\"\" scalecontrol=\"\" maptypecontrol=\"\" streetviewcontrol=\"\" overviewmapcontrol=\"\"]\r\n\r\nJTVCJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJsYW5kc2NhcGUlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E2MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5sb2NhbCUyMiUyQyUyMnN0eWxlcnMlMjIlM0ElNUIlN0IlMjJjb2xvciUyMiUzQSUyMiUyMzIyMjIyMiUyMiU3RCUyQyU3QiUyMnNhdHVyYXRpb24lMjIlM0EtMTAwJTdEJTJDJTdCJTIybGlnaHRuZXNzJTIyJTNBNDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlNUQlN0QlMkMlN0IlMjJmZWF0dXJlVHlwZSUyMiUzQSUyMnRyYW5zaXQlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS0xMDAlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyc2ltcGxpZmllZCUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyYWRtaW5pc3RyYXRpdmUucHJvdmluY2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIyd2F0ZXIlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNmZmZmZmYlMjIlN0QlMkMlN0IlMjJ2aXNpYmlsaXR5JTIyJTNBJTIyb24lMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTVEJTdEJTJDJTdCJTIyZmVhdHVyZVR5cGUlMjIlM0ElMjJyb2FkLmhpZ2h3YXklMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjMyMjIyMjIlMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0E0MCU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycm9hZC5oaWdod2F5JTIyJTJDJTIyZWxlbWVudFR5cGUlMjIlM0ElMjJnZW9tZXRyeS5zdHJva2UlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIydmlzaWJpbGl0eSUyMiUzQSUyMm9mZiUyMiU3RCU1RCU3RCUyQyU3QiUyMmZlYXR1cmVUeXBlJTIyJTNBJTIycG9pLnBhcmslMjIlMkMlMjJlbGVtZW50VHlwZSUyMiUzQSUyMmdlb21ldHJ5LmZpbGwlMjIlMkMlMjJzdHlsZXJzJTIyJTNBJTVCJTdCJTIyY29sb3IlMjIlM0ElMjIlMjNlOWU5ZTklMjIlN0QlMkMlN0IlMjJsaWdodG5lc3MlMjIlM0EwJTdEJTJDJTdCJTIyc2F0dXJhdGlvbiUyMiUzQS00MCU3RCU1RCU3RCUyQyU3QiU3RCU1RA==\r\n\r\n[/cs-extra-map][/vc_column][/vc_row][vc_row css=\".vc_custom_1421254961878{padding-top: 80px !important;padding-bottom: 80px !important;}\" full_width=\"false\" height_engle=\"60px\" engle_border_width=\"0\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" height_engle_style2=\"60px\" engle_duplicated_height_style2=\"60px\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17772\" html_class=\"contact-style-2\"][/vc_column][/vc_row]", "Contact", "", "inherit", "closed", "closed", "", "1482-revision-v1", "", "", "2016-09-14 07:22:57", "2016-09-14 07:22:57", "", "1482", "http://localhost/mdeal2/1482-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17774", "1", "2016-09-14 07:31:26", "2016-09-14 07:31:26", "<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <wordpress@localhost/mdeal2>\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\nphuongk3a@gmail.com\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nMdeal Theme <wordpress@localhost/mdeal2>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Mdeal Theme (http://localhost/mdeal2)\n[your-email]\nReply-To: admin@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.", "Test contact", "", "publish", "closed", "closed", "", "test-contact", "", "", "2016-09-14 07:31:26", "2016-09-14 07:31:26", "", "0", "http://localhost/mdeal2/?post_type=wpcf7_contact_form&p=17774", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `wp_posts` VALUES("17775", "1", "2016-09-14 07:31:58", "2016-09-14 07:31:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17774\" html_class=\"contact-style-1\"][/vc_column][/vc_row]", "Test contact", "", "publish", "closed", "closed", "", "test-contact", "", "", "2016-09-14 07:31:58", "2016-09-14 07:31:58", "", "0", "http://localhost/mdeal2/?page_id=17775", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("17776", "1", "2016-09-14 07:31:58", "2016-09-14 07:31:58", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][contact-form-7 id=\"17774\" html_class=\"contact-style-1\"][/vc_column][/vc_row]", "Test contact", "", "inherit", "closed", "closed", "", "17775-revision-v1", "", "", "2016-09-14 07:31:58", "2016-09-14 07:31:58", "", "17775", "http://localhost/mdeal2/17775-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17777", "1", "2016-09-30 16:06:33", "2016-09-30 16:06:33", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470159169783{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470161701188{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\" categories=\"16\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-09-30 16:06:33", "2016-09-30 16:06:33", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("17778", "1", "2016-09-30 16:08:39", "2016-09-30 16:08:39", "[vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"\" text_align=\"\" column_style=\"default\" list_style=\"no\"][rev_slider_vc alias=\"Slideshow\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1448537228856{padding-bottom: 50px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css_animation=\"\"]\r\n<div class=\"pane-content\">\r\n<h3 class=\"text-center text-size-large\">Welcome To <span class=\"text-theme\">Crane Theme</span>. The Clean &amp; Responsive <b>MultiPurpos</b> Theme.</h3>\r\n<p class=\"text-center padding-lr-20p\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>\r\n<p class=\"text-center padding-lr-20p\"><a class=\"btn-system btn-small btn-gray\" href=\"#\">Buy Now</a></p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470159169783{padding-top: 50px !important;padding-bottom: 25px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate1\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231506920{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Template Features</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" text_align=\"center\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-arrows-alt\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"CREATIVE DESIGN\" title_margin=\"10px 0px 30px 0px\"]Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"FULLY RESPONSIVE\" title_margin=\"10px 0px 30px 0px\"]Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.Nam nec tellus a odio tincidunt auctor a ornare odioed non mauris\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h4\" title_transform=\"inherit\" content_align=\"text-center\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"solid\" layout=\"fancybox.layout1\" icon_hover_style=\"style-2\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" icon_size=\"40px\" icon_color=\"#000000\" icon_color_hover=\"#ffffff\" title_color=\"#000000\" border_color=\"#dedede\" border_color_hover=\"#179bb2\" border_width=\"65\" border_radius=\"50%\" icon_width=\"105px\" icon_heigth=\"105px\" icon_bg_color_hover=\"#179bb2\" title=\"RETINA RESOLUTION\" title_margin=\"10px 0px 30px 0px\"]Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosquad litora torquent.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"true\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1451234536642{padding-top: 60px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451231883643{margin-top: 0px !important;margin-bottom: 0px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>OUR PROJECT</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Morbi accumsan ipsum velit Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra</div>\r\n</div>\r\n[/vc_column_text][ess_grid alias=\"even_grid_madison\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"rda_fadeInUp\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1470161701188{padding-top: 50px !important;padding-bottom: 80px !important;background-color: #f5f5f5 !important;}\" el_class=\"mdeal-validate2\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232895532{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>We are here to serve you</strong></h2>\r\n</div>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-pie-chart\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"TONS OF MODULES\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-link\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"EASY CUSTOMIZE\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-rocket\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"SEO READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-laptop\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-magic\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"MULTIPLE SKINS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][vc_column width=\"1/3\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" column_style=\"default\" list_style=\"no\" animation=\"rda_fadeInUp\"][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" title_font_weight=\"\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-code\" icon_openiconic=\"\" icon_typicons=\"\" icon_entypo=\"\" icon_linecons=\"\" icon_pixelicons=\"\" icon_pe7stroke=\"\" icon_ionicon=\"\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" icon_animate_type=\"\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_more=\"\" read_more_margin=\"\" read_btn=\"\" button_type=\"btn btn-default\" button_size=\"\" box_bg=\"\" box_bg_hover=\"\" box_border=\"\" box_border_hover=\"\" box_padding=\"\" box_margin=\"\" title=\"RESPONSIVE READY\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-cog\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"ONE CLICK INSTALL\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][cshero-fancy-box heading_size=\"h5\" title_transform=\"inherit\" content_align=\"text-left\" icon_type=\"fontawesome\" icon_fontawesome=\"fa fa-fire\" border_style=\"none\" layout=\"fancybox.layout2\" icon_hover_style=\"style-1\" show_icon_link=\"\" crop_image=\"1\" width_image=\"300\" read_btn=\"\" button_type=\"btn btn-default\" title=\"UNLIMITED COLORS\" icon_color=\"#ffffff\" icon_color_hover=\"#179bb2\" icon_bg_color=\"#179bb2\" icon_bg_color_hover=\"#ffffff\" icon_size=\"17px\" icon_width=\"32px\" icon_heigth=\"32px\" border_radius=\"32px\"]Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia dolores.\r\n\r\n[/cshero-fancy-box][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248598388{padding-top: 40px !important;padding-bottom: 40px !important;background-image: url(http://localhost/mdeal2/wp-content/uploads/2015/11/bg-gallery.jpg?id=17433) !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232543647{padding-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>GALLERY BLOCK</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-post-carousel posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"postcarousel.layout3\" carousel_mode=\"horizontal\" rows=\"2\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" content_align=\"left\" show_title=\"1\" crop_image=\"0\" show_category=\"0\" show_description=\"0\" show_date=\"1\" date_format=\"d F Y\" date_font_format=\"700\" date_font_style=\"initial\" show_comment=\"0\" show_author=\"0\" show_read_more=\"0\" read_more=\"Read more\" read_more_icon=\"fa fa-link\" show_popup=\"1\" popup_text=\"Large Image\" popup_icon=\"fa fa-search\" link_type=\"button\" category=\"12\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449248584789{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f5f5f5 !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449263254676{margin-top: 30px !important;margin-bottom: 30px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>MEET THE TEAM</strong></h2>\r\n</div>\r\n<div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus mauris</div>\r\n</div>\r\n[/vc_column_text][cshero-team posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"team.default\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" item_heading_size=\"h5\" team_title_margin=\"0 0 7px 0\" show_team_position=\"0\" show_category=\"1\" show_description=\"0\" excerpt_length=\"100\" read_more=\"0\" read_more_type=\"btn-primary\" button_type=\"btn btn-default\" read_more_text=\"Read more\" show_socials=\"1\" social_border_style=\"none\" social_border_radius=\"50%\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264347588{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1451232081002{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Testimonials</strong></h2>\r\n</div>\r\n[/vc_column_text][cshero-testimonial posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"testimonial.layout3\" type=\"slide\" carousel_mode=\"horizontal\" rows=\"1\" auto_scroll=\"1\" speed_scroll=\"500\" show_nav=\"1\" show_pager=\"0\" show_image=\"1\" crop_image=\"0\" show_title=\"1\" show_category=\"1\" show_description=\"1\" excerpt_length=\"300\" show_readmore=\"0\" read_more=\"Read more\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264476775{padding-top: 40px !important;padding-bottom: 80px !important;background-color: #262b2f !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text el_class=\"pane-title-white\" css=\".vc_custom_1451232599335{padding-bottom: 60px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Featured video</strong></h2>\r\n</div>\r\n[/vc_column_text][vc_column_text]<iframe style=\"width: 100%; height: 500px;\" src=\"https://player.vimeo.com/video/127790272\" width=\"300\" height=\"150\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" enable_row_sc=\"\" arrow_slider=\"false\" exo_same_height=\"no\" animation=\"none\" enable_row_engle=\"\" height_engle=\"60px\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" height_engle_style2=\"60px\" enable_engle_duplicated_style2=\"\" engle_duplicated_height_style2=\"60px\" enable_curve=\"\" curve_height=\"60px\" enable_curve2=\"\" curve_height2=\"60px\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" lax_layer1_align=\"lax_left_top\" lax_layer2_align=\"lax_left_top\" lax_layer3_align=\"lax_left_top\" lax_layer4_align=\"lax_left_top\" lax_layer5_align=\"lax_left_top\" lax_layer6_align=\"lax_left_top\" lax_layer7_align=\"lax_left_top\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\" css=\".vc_custom_1449264951091{padding-top: 40px !important;padding-bottom: 40px !important;}\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][vc_column_text css=\".vc_custom_1449265044803{padding-bottom: 40px !important;}\"]\r\n<div class=\"block-title\">\r\n<h2 class=\"pane-title\"><strong>Latest post</strong></h2>\r\n</div>\r\n<div class=\"block-description\">Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris</div>\r\n[/vc_column_text][cshero-magazine-posts heading_size=\"h3\" title_transform=\"inherit\" item_per_page=\"6\" date_format=\"d F Y\" show_feature=\"0\" show_type=\"1\" show_image=\"0\" crop_image=\"1\" width_image=\"370\" height_image=\"260\" show_date=\"0\" show_description=\"0\" show_list_image=\"1\" crop_list_image=\"1\" width_list_image=\"383\" height_list_image=\"287\" show_list_date=\"1\" show_list_description=\"0\" layout=\"magazine_posts.layout1\"][/vc_column][/vc_row][vc_row full_width=\"false\" row_responsive_large=\"\" row_responsive_medium=\"\" row_responsive_small=\"\" row_responsive_extra_small=\"\" one_headding1=\"\" enable_row_sc=\"\" row_ar_color=\"\" type=\"\" bg_color_left=\"\" bg_color_right=\"\" arrow_slider=\"false\" exo_same_height=\"no\" row_head_color=\"\" row_link_color=\"\" row_link_color_hover=\"\" animation=\"none\" enable_row_engle=\"\" engle_position=\"\" height_engle=\"60px\" engle_color=\"\" engle_border_color=\"\" engle_border_width=\"0\" enable_engle_duplicate=\"\" engle_position_duplicate=\"\" engle_uplicated_height=\"60px\" engle_duplicated_color=\"\" engle_duplicated_border_color=\"\" engle_duplicated_border_width=\"0\" enable_engle_style2=\"\" engle_position_style2=\"\" height_engle_style2=\"60px\" engle_color_style2=\"\" enable_engle_duplicated_style2=\"\" engle_duplicated_position_style2=\"\" engle_duplicated_height_style2=\"60px\" engle_duplicated_color_style2=\"\" enable_curve=\"\" curve_height=\"60px\" curve_color=\"\" enable_curve2=\"\" curve_height2=\"60px\" curve_color2=\"\" enable_parallax=\"\" parallax_speed=\"0.8\" bg_video_color=\"\" bg_video_transparent=\"0\" disable_parallax_mobile=\"\" poster=\"\" loop=\"\" autoplay=\"\" muted=\"\" controls=\"\" show_btn=\"\" bg_video_src_mp4=\"\" bg_video_src_ogv=\"\" bg_video_src_webm=\"\" lax_headding1=\"\" lax_layer1=\"\" lax_layer1_align=\"lax_left_top\" lax_headding2=\"\" lax_layer2=\"\" lax_layer2_align=\"lax_left_top\" lax_headding3=\"\" lax_layer3=\"\" lax_layer3_align=\"lax_left_top\" lax_headding4=\"\" lax_layer4=\"\" lax_layer4_align=\"lax_left_top\" lax_headding5=\"\" lax_layer5=\"\" lax_layer5_align=\"lax_left_top\" lax_headding6=\"\" lax_layer6=\"\" lax_layer6_align=\"lax_left_top\" lax_headding7=\"\" lax_layer7=\"\" lax_layer7_align=\"lax_left_top\" lax_headding8=\"\" lax_layer8=\"\" lax_layer8_align=\"lax_left_top\" row_arrow=\"no\" arrow_position=\"top\"][vc_column width=\"1/1\" column_responsive_large=\"\" column_responsive_medium=\"\" column_responsive_small=\"\" column_responsive_extra_small=\"\" image_transition=\"\" animation=\"rda_fadeInUp\" column_style=\"default\" list_style=\"no\"][cshero-clients-carousel title_align=\"text-left\" heading_text_style=\"none\" posts_per_page=\"12\" orderby=\"none\" order=\"none\" layout=\"client.layout1\" rows=\"1\" carousel_mode=\"horizontal\" min_slide=\"1\" max_slide=\"6\" item_slide=\"6\" width_item=\"238\" margin_item=\"0\" auto_scroll=\"1\" speed=\"500\" show_nav=\"1\" nav_align=\"text-left\" show_pager=\"1\" pager_align=\"pager-left\" crop_image=\"0\" width_image=\"166\" height_image=\"166\" show_client_title=\"0\" client_title_align=\"text-left\" client_title_text_style=\"none\" show_link=\"1\"][/vc_column][/vc_row]", "Home", "", "inherit", "closed", "closed", "", "17274-revision-v1", "", "", "2016-09-30 16:08:39", "2016-09-30 16:08:39", "", "17274", "http://localhost/mdeal2/17274-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wp_revslider_css */
INSERT INTO `wp_revslider_css` VALUES("1", ".tp-caption.medium_grey", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("2", ".tp-caption.small_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("3", ".tp-caption.medium_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("4", ".tp-caption.large_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("5", ".tp-caption.very_large_text", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}");
INSERT INTO `wp_revslider_css` VALUES("6", ".tp-caption.very_big_white", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}");
INSERT INTO `wp_revslider_css` VALUES("7", ".tp-caption.very_big_black", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}");
INSERT INTO `wp_revslider_css` VALUES("8", ".tp-caption.modern_medium_fat", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("9", ".tp-caption.modern_medium_fat_white", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("10", ".tp-caption.modern_medium_light", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("11", ".tp-caption.modern_big_bluebg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}");
INSERT INTO `wp_revslider_css` VALUES("12", ".tp-caption.modern_big_redbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}");
INSERT INTO `wp_revslider_css` VALUES("13", ".tp-caption.modern_small_text_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}");
INSERT INTO `wp_revslider_css` VALUES("14", ".tp-caption.boxshadow", NULL, NULL, "{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}");
INSERT INTO `wp_revslider_css` VALUES("15", ".tp-caption.black", NULL, NULL, "{\"color\":\"#000\",\"text-shadow\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("16", ".tp-caption.noshadow", NULL, NULL, "{\"text-shadow\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("17", ".tp-caption.thinheadline_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `wp_revslider_css` VALUES("18", ".tp-caption.thintext_dark", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}");
INSERT INTO `wp_revslider_css` VALUES("19", ".tp-caption.largeblackbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("20", ".tp-caption.largepinkbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("21", ".tp-caption.largewhitebg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("22", ".tp-caption.largegreenbg", NULL, NULL, "{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}");
INSERT INTO `wp_revslider_css` VALUES("23", ".tp-caption.excerpt", NULL, NULL, "{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("24", ".tp-caption.large_bold_grey", NULL, NULL, "{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("25", ".tp-caption.medium_thin_grey", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("26", ".tp-caption.small_thin_grey", NULL, NULL, "{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("27", ".tp-caption.lightgrey_divider", NULL, NULL, "{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("28", ".tp-caption.large_bold_darkblue", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("29", ".tp-caption.medium_bg_darkblue", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("30", ".tp-caption.medium_bold_red", NULL, NULL, "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("31", ".tp-caption.medium_light_red", NULL, NULL, "{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("32", ".tp-caption.medium_bg_red", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("33", ".tp-caption.medium_bold_orange", NULL, NULL, "{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("34", ".tp-caption.medium_bg_orange", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("35", ".tp-caption.grassfloor", NULL, NULL, "{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("36", ".tp-caption.large_bold_white", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("37", ".tp-caption.medium_light_white", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("38", ".tp-caption.mediumlarge_light_white", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("39", ".tp-caption.mediumlarge_light_white_center", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("40", ".tp-caption.medium_bg_asbestos", NULL, NULL, "{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("41", ".tp-caption.medium_light_black", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("42", ".tp-caption.large_bold_black", NULL, NULL, "{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("43", ".tp-caption.mediumlarge_light_darkblue", NULL, NULL, "{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("44", ".tp-caption.small_light_white", NULL, NULL, "{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("45", ".tp-caption.roundedimage", NULL, NULL, "{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("46", ".tp-caption.large_bg_black", NULL, NULL, "{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("47", ".tp-caption.mediumwhitebg", NULL, NULL, "{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("48", ".tp-caption.mediumlightblack", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"56px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("49", ".tp-caption.mediumlightblack-60px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"96px\",\"line-height\":\"115px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("50", ".tp-caption.largewhitebg-new", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-weight\":\"700\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"padding\":\"10px 20px 10px 20px\",\"text-shadow\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.6)\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("51", ".tp-caption.largewhitebg-new2", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"32px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#fff\",\"text-decoration\":\"none\",\"padding\":\"10px 20px 10px 20px\",\"text-shadow\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.6)\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("52", ".tp-caption.largewhitebg-custom", "{\"hover\":\"false\"}", "\"\"", "{\"color\":\"#ffffff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"1\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("53", ".tp-caption.largewhitebg-custom2", "{\"hover\":\"false\"}", "\"\"", "{\"color\":\"#ffffff\",\"font-weight\":\"300\",\"font-size\":\"25px\",\"line-height\":\"1\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"letter-spacing\":\"0.44em\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("54", ".tp-caption.large-thin-black", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"60px\",\"font-weight\":\"100\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("55", ".tp-caption.large-thick-black", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"60px\",\"font-weight\":\"400\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("56", ".tp-caption.large-thin-black-sm", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"20px\",\"font-weight\":\"100\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("57", ".tp-caption.white-times", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"18px\",\"font-family\":\"\\\"Palatino Linotype\\\",\\\"Book Antiqua\\\",Palatino,serif\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"font-style\":\"italic\",\"letter-spacing\":\"3px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("58", ".tp-caption.largewhitebg-custom21", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"25px\",\"line-height\":\"1\",\"font-weight\":\"400\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"0.44em\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("59", ".tp-caption.lato700-white", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"50px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("60", ".tp-caption.lato300-white", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"32px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("61", ".tp-caption.lato700-white-42px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"42px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("62", ".tp-caption.lato300-white-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"32px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"5px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("63", ".tp-caption.lato300-white-16px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"16px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("64", ".tp-caption.lato400-white-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"1\",\"font-weight\":\"400\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"6px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("65", ".tp-caption.lato700-white-58px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("66", ".tp-caption.lato700-white-58px-background", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(37, 56, 93, 1)\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"padding\":\"12px\",\"border-width\":\"0px 0px 0px 4px\",\"border-color\":\"rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255) rgb(205, 4, 4)\",\"border-style\":\"none none none solid\"}");
INSERT INTO `wp_revslider_css` VALUES("67", ".tp-caption.lato500-white-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"1\",\"font-weight\":\"500\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"6px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("68", ".tp-caption.lato800-white-58px-background", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"800\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(37, 56, 93, 1)\",\"padding\":\"12px 12px 12px 12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px 0px 0px 4px\",\"border-color\":\"rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255) rgb(205, 4, 4)\",\"border-style\":\"none none none solid\"}");
INSERT INTO `wp_revslider_css` VALUES("69", ".tp-caption.lato500-blue-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"1\",\"font-weight\":\"500\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#25385d\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("70", ".tp-caption.lato300-blue-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"35px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(37, 56, 93)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("71", ".tp-caption.lato700-white-58px-background-black", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 0.3)\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"padding\":\"12px 12px 12px 12px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("72", ".tp-caption.lato300-black", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"32px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("73", ".tp-caption.lato300-black-28px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"28px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("74", ".tp-caption.lato300-black-26px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"26px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("75", ".tp-caption.lato300-black-25px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"25px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("76", ".tp-caption.lato700-white-16px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"16px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("77", ".tp-caption.lato800-white-58px-background-lblu", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"800\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(1, 171, 206)\",\"padding\":\"12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("78", ".tp-caption.lato500-black-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"1\",\"font-weight\":\"500\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(19, 21, 28)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"6px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("79", ".tp-caption.lato300-black-24px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"35px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(19, 21, 28)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("80", ".tp-caption.lato700-black", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"50px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(19, 21, 28)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("81", ".tp-caption.lato700-black-42px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"42px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(19, 21, 28)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("82", ".tp-caption.lato700-white-86px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"86px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("83", ".tp-caption.lato900-white-120px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"120px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("84", ".tp-caption.lato300-white-24px-center", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"32px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"5px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("85", ".tp-caption.lato900-white-14px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"14px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("86", ".tp-caption.lato900-white-12px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"12px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("87", ".tp-caption.lato900-white-12px-lsp", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"12px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"2px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("88", ".tp-caption.lato900-white-28px-lsp", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"28px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"3px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("89", ".tp-caption.lato900-white-30px-lsp", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"30px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"3px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("90", ".tp-caption.lato800-white-58px-background-gold", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"800\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(254, 220, 84)\",\"padding\":\"12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("91", ".tp-caption.lato900-white-92px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"92px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("92", ".tp-caption.lato900-purple-60px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"60px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(32, 10, 46)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("93", ".tp-caption.lato900-purple-120px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"120px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(32, 10, 46)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("94", ".tp-caption.lato900-purple-34px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"34px\",\"line-height\":\"47px\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(32, 10, 46)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("95", ".tp-caption.lato900-purple-38px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"38px\",\"line-height\":\"47px\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(32, 10, 46)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("96", ".tp-caption.lato800-white-58px-background-yell", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"800\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(254, 220, 84)\",\"padding\":\"12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("97", ".tp-caption.merriweather400-white-49px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"49px\",\"line-height\":\"1\",\"font-weight\":\"400\",\"font-family\":\"\\\"Merriweather\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("98", ".tp-caption.merriweather400-white-18px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"18px\",\"line-height\":\"29px\",\"font-weight\":\"400\",\"font-family\":\"\\\"Merriweather\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("99", ".tp-caption.lato800-white-58px-background2", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"800\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 125, 148, 1)\",\"padding\":\"12px 12px 12px 12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255) rgb(205, 4, 4)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("100", ".tp-caption.merriweather-white-58px-background2", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"400\",\"font-family\":\"\\\"Merriweather\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 125, 148, 1)\",\"padding\":\"18px 12px 12px 12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255) rgb(255, 255, 255) rgb(255, 255, 255) rgb(205, 4, 4)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("101", ".tp-caption.merriweather400-blue-18px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"18px\",\"line-height\":\"29px\",\"font-weight\":\"400\",\"font-family\":\"\\\"Merriweather\\\"\",\"color\":\"rgb(0, 125, 148)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("102", ".tp-caption.lato900-white-68px-lsp", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"68px\",\"line-height\":\"1\",\"font-weight\":\"900\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"3px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("103", ".tp-caption.merriweather400-white2-18px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"18px\",\"line-height\":\"29px\",\"font-weight\":\"400\",\"font-family\":\"\\\"Merriweather\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("104", ".tp-caption.lato700-white-16px-lsp", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"16px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"5px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("105", ".tp-caption.lato700-white-12px-lsp", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"12px\",\"line-height\":\"1\",\"font-weight\":\"700\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"3px\",\"padding\":\"10px 0px 10px 0px\",\"border-width\":\"3px 0px 3px 0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"solid none solid none\"}");
INSERT INTO `wp_revslider_css` VALUES("106", ".tp-caption.lato300-black-60px", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"60px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgba(255, 255, 255, 0.6)\",\"padding\":\"10px 20px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("107", ".tp-caption.lato300-black-22px-italic", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"1\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(0, 0, 0)\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"background-color\":\"rgba(255, 255, 255, 0.6)\",\"padding\":\"10px 20px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("108", ".tp-caption.lato800-white-58px-background-lblu2", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"58px\",\"line-height\":\"1\",\"font-weight\":\"800\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 123, 150)\",\"padding\":\"12px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("109", ".tp-caption.lato300-white-24px-center2", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"24px\",\"line-height\":\"32px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Lato\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"letter-spacing\":\"5px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}");
INSERT INTO `wp_revslider_css` VALUES("110", ".tp-caption.largeboldwhite1", "{\"hover\":\"false\"}", "\"\"", "{\"font-size\":\"46px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}");

/* INSERT TABLE DATA: wp_revslider_layer_animations */
INSERT INTO `wp_revslider_layer_animations` VALUES("1", "Long from Right Cloud", "{\"movex\":\"-190\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"100\",\"captionperspective\":\"0\",\"originx\":\"0\",\"originy\":\"0\"}");
INSERT INTO `wp_revslider_layer_animations` VALUES("2", "Long from Right Cloud2", "{\"movex\":\"200\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"100\",\"captionperspective\":\"0\",\"originx\":\"0\",\"originy\":\"0\"}");
INSERT INTO `wp_revslider_layer_animations` VALUES("3", "Long from Right Cloud3", "{\"movex\":\"-120\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"100\",\"captionperspective\":\"0\",\"originx\":\"0\",\"originy\":\"0\"}");
INSERT INTO `wp_revslider_layer_animations` VALUES("4", "Long from Right Cloud4", "{\"movex\":\"110\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"100\",\"captionperspective\":\"0\",\"originx\":\"0\",\"originy\":\"0\"}");
INSERT INTO `wp_revslider_layer_animations` VALUES("5", "LogoEnlarge", "{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"110\",\"scaley\":\"110\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"100\",\"captionperspective\":\"0\",\"originx\":\"50\",\"originy\":\"50\"}");

/* INSERT TABLE DATA: wp_revslider_settings */
INSERT INTO `wp_revslider_settings` VALUES("1", "a:0:{}", "");

/* INSERT TABLE DATA: wp_revslider_sliders */
INSERT INTO `wp_revslider_sliders` VALUES("21", "Slideshow", "Slideshow", "{\"title\":\"Slideshow\",\"alias\":\"Slideshow\",\"shortcode\":\"[rev_slider Slideshow]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"category_13\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"on\",\"min_height\":\"\",\"width\":\"1920\",\"height\":\"750\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"7000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"enable_static_layers\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"top\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"0\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"navigation_style\":\"round\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"solo\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":1200,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\"}");
INSERT INTO `wp_revslider_sliders` VALUES("22", "Slider2", "slider2", "{\"title\":\"Slider2\",\"alias\":\"slider2\",\"shortcode\":\"[rev_slider slider2]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"category_13\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullwidth\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"on\",\"min_height\":\"0\",\"width\":\"1920\",\"height\":\"750\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"7000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"enable_static_layers\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"top\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"0\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"navigation_style\":\"round\",\"navigaion_type\":\"none\",\"navigation_arrows\":\"solo\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\"}");

/* INSERT TABLE DATA: wp_revslider_slides */
INSERT INTO `wp_revslider_slides` VALUES("72", "21", "1", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":500,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17748\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2016\\/09\\/SLIDE1.jpg\",\"0\":\"Remove\"}", "[{\"text\":\"Inspire and make you think\",\"type\":\"text\",\"left\":-474,\"top\":-88,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Power0.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1500,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_bold_white\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":800,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":765,\"height\":60,\"serial\":\"0\",\"endTimeFinal\":6200,\"endSpeedFinal\":800,\"realEndTime\":7000,\"timeLast\":6200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<span class=\\\"zoom-this\\\">Lorem ipsum dolor sit amet consectetuer<\\/span>\",\"type\":\"text\",\"left\":-466,\"top\":-13,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"easeOutCirc\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1500,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_text\",\"time\":500,\"endtime\":\"6500\",\"endspeed\":800,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":785,\"height\":40,\"serial\":\"1\",\"endTimeFinal\":6200,\"endSpeedFinal\":800,\"realEndTime\":7000,\"timeLast\":6200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">Download now<\\/a>\",\"type\":\"text\",\"left\":-622,\"top\":85,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":2000,\"endtime\":\"6500\",\"endspeed\":500,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":91,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":6500,\"endSpeedFinal\":500,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">LEARN MORE<\\/a>\",\"type\":\"text\",\"left\":-240,\"top\":85,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":2000,\"endtime\":\"6500\",\"endspeed\":500,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"4\",\"endTimeFinal\":6500,\"endSpeedFinal\":500,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]");
INSERT INTO `wp_revslider_slides` VALUES("76", "21", "4", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"slideshow2\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17538\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2015\\/12\\/slider-2.jpg\",\"0\":\"Remove\"}", "[{\"text\":\"Inspire and make you think\",\"type\":\"text\",\"left\":0,\"top\":-110,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"Power4.easeIn\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_bold_white\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":780,\"height\":50,\"serial\":\"0\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"Lorem ipsum dolor sit amet consectetuer\",\"type\":\"text\",\"left\":0,\"top\":-20,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"easeOutCirc\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_text\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":766,\"height\":25,\"serial\":\"1\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">Download now<\\/a>\",\"type\":\"text\",\"left\":-110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-blue btn-trans\\\">LEARN MORE<\\/a>\",\"type\":\"text\",\"left\":110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"3\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]");
INSERT INTO `wp_revslider_slides` VALUES("77", "21", "5", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"slideshow3\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17539\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2015\\/12\\/slider-3.jpg\",\"0\":\"Remove\"}", "[{\"text\":\"Inspire and make you think\",\"type\":\"text\",\"left\":0,\"top\":-110,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"Power4.easeIn\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_bold_white\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":780,\"height\":50,\"serial\":\"0\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"Lorem ipsum dolor sit amet consectetuer\",\"type\":\"text\",\"left\":0,\"top\":-20,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"easeOutCirc\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_text\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":766,\"height\":25,\"serial\":\"1\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">Download now<\\/a>\",\"type\":\"text\",\"left\":-110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-blue btn-trans\\\">LEARN MORE<\\/a>\",\"type\":\"text\",\"left\":110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"3\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]");
INSERT INTO `wp_revslider_slides` VALUES("78", "22", "1", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17655\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2015\\/12\\/slider-2-3.jpg\",\"0\":\"Remove\"}", "[{\"text\":\"Inspire and make you think\",\"type\":\"text\",\"left\":0,\"top\":-110,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"Power4.easeIn\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_bold_white\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":780,\"height\":50,\"serial\":\"0\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"Lorem ipsum dolor sit amet consectetuer\",\"type\":\"text\",\"left\":0,\"top\":-20,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"easeOutCirc\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_text\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":766,\"height\":25,\"serial\":\"1\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">Download now<\\/a>\",\"type\":\"text\",\"left\":-110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-blue btn-trans\\\">LEARN MORE<\\/a>\",\"type\":\"text\",\"left\":110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"3\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]");
INSERT INTO `wp_revslider_slides` VALUES("81", "22", "2", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":300,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17656\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2015\\/12\\/slider-2-2.jpg\",\"0\":\"Remove\"}", "[{\"text\":\"Inspire and make you think\",\"type\":\"text\",\"left\":0,\"top\":-110,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"Power4.easeIn\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_bold_white\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":780,\"height\":50,\"serial\":\"0\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"Lorem ipsum dolor sit amet consectetuer\",\"type\":\"text\",\"left\":0,\"top\":-20,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"easeOutCirc\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":300,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_text\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":766,\"height\":25,\"serial\":\"1\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">Download now<\\/a>\",\"type\":\"text\",\"left\":-110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-blue btn-trans\\\">LEARN MORE<\\/a>\",\"type\":\"text\",\"left\":110,\"top\":60,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"lfb\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":300,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"3\",\"endTimeFinal\":6700,\"endSpeedFinal\":300,\"realEndTime\":7000,\"timeLast\":6700,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]");
INSERT INTO `wp_revslider_slides` VALUES("82", "21", "2", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":500,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17749\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2016\\/09\\/SLIDE3.jpg\",\"0\":\"Remove\"}", "[]");
INSERT INTO `wp_revslider_slides` VALUES("84", "21", "3", "{\"background_type\":\"image\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"random\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":500,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"image_id\":\"17750\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"7000\",\"kb_easing\":\"Linear.easeNone\",\"image\":\"http:\\/\\/localhost/mdeal2\\/wp-content\\/uploads\\/2016\\/09\\/SLIDE2.jpg\",\"0\":\"Remove\"}", "[{\"text\":\"Inspire and make you think\",\"type\":\"text\",\"left\":-474,\"top\":-88,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Power0.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1500,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_bold_white\",\"time\":500,\"endtime\":\"6700\",\"endspeed\":800,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":765,\"height\":60,\"serial\":\"0\",\"endTimeFinal\":6200,\"endSpeedFinal\":800,\"realEndTime\":7000,\"timeLast\":6200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<span class=\\\"zoom-this\\\">Lorem ipsum dolor sit amet consectetuer<\\/span>\",\"type\":\"text\",\"left\":-466,\"top\":-13,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfb\",\"easing\":\"easeOutCirc\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1500,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"large_text\",\"time\":500,\"endtime\":\"6500\",\"endspeed\":800,\"endanimation\":\"fadeout\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":785,\"height\":40,\"serial\":\"1\",\"endTimeFinal\":6200,\"endSpeedFinal\":800,\"realEndTime\":7000,\"timeLast\":6200,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_end\":\"2\",\"static_start\":\"1\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">Download now<\\/a>\",\"type\":\"text\",\"left\":-622,\"top\":85,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":2000,\"endtime\":\"6500\",\"endspeed\":500,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":91,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":6500,\"endSpeedFinal\":500,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\\\"#\\\" class=\\\"btn btn-default btn-lg btn-white btn-trans\\\">LEARN MORE<\\/a>\",\"type\":\"text\",\"left\":-240,\"top\":85,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":1000,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"black\",\"time\":2000,\"endtime\":\"6500\",\"endspeed\":500,\"endanimation\":\"auto\",\"endeasing\":\"nothing\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":81,\"height\":13,\"serial\":\"3\",\"endTimeFinal\":6500,\"endSpeedFinal\":500,\"realEndTime\":7000,\"timeLast\":6500,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1102", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("726", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("2063", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("1015", "28", "0");
INSERT INTO `wp_term_relationships` VALUES("35", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("46", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("47", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("48", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("49", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("50", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("51", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("76", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("836", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("238", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("242", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("243", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("239", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("239", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("240", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("240", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("242", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("242", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("243", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("241", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("241", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("244", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("239", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("243", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("244", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("245", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("245", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("245", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("9032", "56", "0");
INSERT INTO `wp_term_relationships` VALUES("9036", "56", "0");
INSERT INTO `wp_term_relationships` VALUES("9038", "56", "0");
INSERT INTO `wp_term_relationships` VALUES("1011", "31", "0");
INSERT INTO `wp_term_relationships` VALUES("385", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("391", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("396", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("394", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("1011", "29", "0");
INSERT INTO `wp_term_relationships` VALUES("1007", "29", "0");
INSERT INTO `wp_term_relationships` VALUES("1213", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("627", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("615", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("623", "16", "0");
INSERT INTO `wp_term_relationships` VALUES("625", "13", "0");
INSERT INTO `wp_term_relationships` VALUES("630", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("629", "14", "0");
INSERT INTO `wp_term_relationships` VALUES("1003", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("633", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("635", "15", "0");
INSERT INTO `wp_term_relationships` VALUES("1003", "35", "0");
INSERT INTO `wp_term_relationships` VALUES("1003", "31", "0");
INSERT INTO `wp_term_relationships` VALUES("657", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("662", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("664", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("664", "17", "0");
INSERT INTO `wp_term_relationships` VALUES("666", "18", "0");
INSERT INTO `wp_term_relationships` VALUES("666", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("666", "19", "0");
INSERT INTO `wp_term_relationships` VALUES("666", "20", "0");
INSERT INTO `wp_term_relationships` VALUES("666", "21", "0");
INSERT INTO `wp_term_relationships` VALUES("1226", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("2064", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("2065", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("836", "26", "0");
INSERT INTO `wp_term_relationships` VALUES("839", "1", "0");
INSERT INTO `wp_term_relationships` VALUES("839", "27", "0");
INSERT INTO `wp_term_relationships` VALUES("9039", "56", "0");
INSERT INTO `wp_term_relationships` VALUES("17513", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("1514", "51", "0");
INSERT INTO `wp_term_relationships` VALUES("17593", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("1019", "28", "0");
INSERT INTO `wp_term_relationships` VALUES("1019", "30", "0");
INSERT INTO `wp_term_relationships` VALUES("1023", "32", "0");
INSERT INTO `wp_term_relationships` VALUES("1027", "29", "0");
INSERT INTO `wp_term_relationships` VALUES("1031", "30", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "28", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "31", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "45", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "36", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "41", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "42", "0");
INSERT INTO `wp_term_relationships` VALUES("1047", "46", "0");
INSERT INTO `wp_term_relationships` VALUES("1097", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("17517", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("1109", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("1095", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("1099", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("1113", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("1228", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("1232", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("1323", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("1332", "12", "0");
INSERT INTO `wp_term_relationships` VALUES("2062", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("2061", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("17514", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("2066", "53", "0");
INSERT INTO `wp_term_relationships` VALUES("17682", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("1106", "54", "0");
INSERT INTO `wp_term_relationships` VALUES("238", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("238", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("244", "50", "0");
INSERT INTO `wp_term_relationships` VALUES("3342", "55", "0");
INSERT INTO `wp_term_relationships` VALUES("9135", "57", "0");
INSERT INTO `wp_term_relationships` VALUES("9136", "57", "0");
INSERT INTO `wp_term_relationships` VALUES("9137", "57", "0");
INSERT INTO `wp_term_relationships` VALUES("9138", "57", "0");
INSERT INTO `wp_term_relationships` VALUES("9163", "58", "0");
INSERT INTO `wp_term_relationships` VALUES("9164", "58", "0");
INSERT INTO `wp_term_relationships` VALUES("9166", "58", "0");
INSERT INTO `wp_term_relationships` VALUES("9206", "59", "0");
INSERT INTO `wp_term_relationships` VALUES("9218", "59", "0");
INSERT INTO `wp_term_relationships` VALUES("9219", "59", "0");
INSERT INTO `wp_term_relationships` VALUES("14205", "60", "0");
INSERT INTO `wp_term_relationships` VALUES("14206", "60", "0");
INSERT INTO `wp_term_relationships` VALUES("14207", "60", "0");
INSERT INTO `wp_term_relationships` VALUES("17690", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("14288", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17569", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("244", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("14469", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("14469", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("14471", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("14474", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("14476", "61", "0");
INSERT INTO `wp_term_relationships` VALUES("17681", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17680", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17679", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("15004", "65", "0");
INSERT INTO `wp_term_relationships` VALUES("15012", "65", "0");
INSERT INTO `wp_term_relationships` VALUES("15014", "65", "0");
INSERT INTO `wp_term_relationships` VALUES("15015", "65", "0");
INSERT INTO `wp_term_relationships` VALUES("15011", "65", "0");
INSERT INTO `wp_term_relationships` VALUES("15115", "66", "0");
INSERT INTO `wp_term_relationships` VALUES("15124", "66", "0");
INSERT INTO `wp_term_relationships` VALUES("15125", "66", "0");
INSERT INTO `wp_term_relationships` VALUES("15126", "66", "0");
INSERT INTO `wp_term_relationships` VALUES("15127", "66", "0");
INSERT INTO `wp_term_relationships` VALUES("15128", "66", "0");
INSERT INTO `wp_term_relationships` VALUES("15258", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15268", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15269", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15270", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15271", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15272", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15273", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("15274", "67", "0");
INSERT INTO `wp_term_relationships` VALUES("17607", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("15258", "68", "0");
INSERT INTO `wp_term_relationships` VALUES("15268", "68", "0");
INSERT INTO `wp_term_relationships` VALUES("17516", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17515", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17468", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17467", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17469", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17470", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17601", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17487", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17489", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17488", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17512", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17523", "56", "0");
INSERT INTO `wp_term_relationships` VALUES("17529", "22", "0");
INSERT INTO `wp_term_relationships` VALUES("17741", "31", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("51", "51", "nav_menu", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "clientscategory", "", "0", "8");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "team_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "testimonial_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "portfolio_category", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "portfolio_category", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "portfolio_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "portfolio_category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("10", "10", "pricing_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("11", "11", "clientscategory", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("12", "12", "category", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("13", "13", "category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("14", "14", "category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("15", "15", "category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("16", "16", "category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("17", "17", "post_format", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("18", "18", "post_format", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("19", "19", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("20", "20", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("21", "21", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("22", "22", "nav_menu", "", "0", "25");
INSERT INTO `wp_term_taxonomy` VALUES("23", "23", "team_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("24", "24", "team_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("25", "25", "team_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("26", "26", "post_format", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("27", "27", "post_format", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("28", "28", "essential_grid_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("29", "29", "essential_grid_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("30", "30", "essential_grid_category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("31", "31", "essential_grid_category", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("32", "32", "essential_grid_category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("33", "33", "essential_grid_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("34", "34", "essential_grid_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("35", "35", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("36", "36", "post_tag", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("37", "37", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("38", "38", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("39", "39", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("40", "40", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("41", "41", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("42", "42", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("43", "43", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("44", "44", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("45", "45", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("46", "46", "post_tag", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("47", "47", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("48", "48", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("49", "49", "post_tag", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("50", "50", "portfolio_category", "", "0", "13");
INSERT INTO `wp_term_taxonomy` VALUES("52", "52", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("53", "53", "nav_menu", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("54", "54", "testimonial_category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("55", "55", "testimonial_category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("56", "56", "pricing_category", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("57", "57", "pricing_category", "", "0", "4");
INSERT INTO `wp_term_taxonomy` VALUES("58", "58", "pricing_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("59", "59", "pricing_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("60", "60", "pricing_category", "", "0", "3");
INSERT INTO `wp_term_taxonomy` VALUES("61", "61", "portfolio_category", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("62", "62", "portfolio_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("63", "63", "team_category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("64", "64", "clientscategory", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("65", "65", "team_category", "", "0", "5");
INSERT INTO `wp_term_taxonomy` VALUES("66", "66", "team_category", "", "0", "6");
INSERT INTO `wp_term_taxonomy` VALUES("67", "67", "team_category", "", "0", "8");
INSERT INTO `wp_term_taxonomy` VALUES("68", "68", "team_category", "", "0", "2");
INSERT INTO `wp_term_taxonomy` VALUES("71", "71", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("72", "72", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("73", "73", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("74", "74", "product_type", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("93", "93", "product_cat", "", "77", "0");
INSERT INTO `wp_term_taxonomy` VALUES("76", "76", "product_cat", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("77", "77", "product_cat", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("78", "78", "pa_colors", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("79", "79", "pa_colors", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("80", "80", "pa_sizes", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("81", "81", "pa_sizes", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("82", "82", "pa_sizes", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("83", "83", "pa_colors", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("92", "92", "product_cat", "", "76", "0");
INSERT INTO `wp_term_taxonomy` VALUES("91", "91", "product_cat", "", "76", "0");
INSERT INTO `wp_term_taxonomy` VALUES("90", "90", "product_cat", "", "76", "0");
INSERT INTO `wp_term_taxonomy` VALUES("94", "94", "product_cat", "", "77", "0");
INSERT INTO `wp_term_taxonomy` VALUES("95", "95", "product_cat", "", "77", "0");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("51", "Menu Hidden Sidebar", "menu-hidden-sidebar", "0");
INSERT INTO `wp_terms` VALUES("3", "Clients", "clients", "0");
INSERT INTO `wp_terms` VALUES("4", "UI &amp; UX DEVEOPER", "ui-ux-deveoper", "0");
INSERT INTO `wp_terms` VALUES("5", "Managing Director, Corporate Company", "manage", "0");
INSERT INTO `wp_terms` VALUES("6", "BRANDING", "branding", "0");
INSERT INTO `wp_terms` VALUES("7", "GALLERY", "gallery", "0");
INSERT INTO `wp_terms` VALUES("8", "PHOTOGRAPHY", "photography", "0");
INSERT INTO `wp_terms` VALUES("9", "VIDEO", "video", "0");
INSERT INTO `wp_terms` VALUES("10", "Pricing", "pricing", "0");
INSERT INTO `wp_terms` VALUES("11", "Logo", "logo", "0");
INSERT INTO `wp_terms` VALUES("12", "Latest Blogs", "latest-blogs", "0");
INSERT INTO `wp_terms` VALUES("13", "Coding", "coding", "0");
INSERT INTO `wp_terms` VALUES("14", "Design", "design", "0");
INSERT INTO `wp_terms` VALUES("15", "Lifestyle", "lifestyle", "0");
INSERT INTO `wp_terms` VALUES("16", "Photography", "photography2", "0");
INSERT INTO `wp_terms` VALUES("17", "post-format-gallery", "post-format-gallery", "0");
INSERT INTO `wp_terms` VALUES("18", "post-format-video", "post-format-video", "0");
INSERT INTO `wp_terms` VALUES("19", "design", "design", "0");
INSERT INTO `wp_terms` VALUES("20", "html/css", "htmlcss", "0");
INSERT INTO `wp_terms` VALUES("21", "web", "web", "0");
INSERT INTO `wp_terms` VALUES("22", "Main Menu", "main-menu", "0");
INSERT INTO `wp_terms` VALUES("23", "CODING JEDI", "coding-jedi", "0");
INSERT INTO `wp_terms` VALUES("24", "ACCOUNTS MANAGER", "accounts-manager", "0");
INSERT INTO `wp_terms` VALUES("25", "MANAGING DIRECTOR", "managing-director", "0");
INSERT INTO `wp_terms` VALUES("26", "post-format-quote", "post-format-quote", "0");
INSERT INTO `wp_terms` VALUES("27", "post-format-audio", "post-format-audio", "0");
INSERT INTO `wp_terms` VALUES("28", "Applications", "applications", "0");
INSERT INTO `wp_terms` VALUES("29", "Computers", "computers", "0");
INSERT INTO `wp_terms` VALUES("30", "Illustration", "illustration", "0");
INSERT INTO `wp_terms` VALUES("31", "Logo", "logo", "0");
INSERT INTO `wp_terms` VALUES("32", "Music", "music", "0");
INSERT INTO `wp_terms` VALUES("33", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("34", "Video", "video", "0");
INSERT INTO `wp_terms` VALUES("35", "food", "food", "0");
INSERT INTO `wp_terms` VALUES("36", "hipster", "hipster", "0");
INSERT INTO `wp_terms` VALUES("37", "camera", "camera", "0");
INSERT INTO `wp_terms` VALUES("38", "cool", "cool", "0");
INSERT INTO `wp_terms` VALUES("39", "chilled", "chilled", "0");
INSERT INTO `wp_terms` VALUES("40", "coctail", "coctail", "0");
INSERT INTO `wp_terms` VALUES("41", "holidays", "holidays", "0");
INSERT INTO `wp_terms` VALUES("42", "light", "light", "0");
INSERT INTO `wp_terms` VALUES("43", "place", "place", "0");
INSERT INTO `wp_terms` VALUES("44", "video-2", "video-2", "0");
INSERT INTO `wp_terms` VALUES("45", "hardware", "hardware", "0");
INSERT INTO `wp_terms` VALUES("46", "retro", "retro", "0");
INSERT INTO `wp_terms` VALUES("47", "watch", "watch", "0");
INSERT INTO `wp_terms` VALUES("48", "mac", "mac", "0");
INSERT INTO `wp_terms` VALUES("49", "dark", "dark", "0");
INSERT INTO `wp_terms` VALUES("50", "IDENTITY", "identity", "0");
INSERT INTO `wp_terms` VALUES("52", "Videos", "videos", "0");
INSERT INTO `wp_terms` VALUES("53", "Menu Home Color", "menu-home-color", "0");
INSERT INTO `wp_terms` VALUES("54", "CEO, Industrial Company", "ceo-industrial-company", "0");
INSERT INTO `wp_terms` VALUES("55", "Personal Investor", "personal-investor", "0");
INSERT INTO `wp_terms` VALUES("56", "Normal", "normal", "0");
INSERT INTO `wp_terms` VALUES("57", "Has Image", "has-image", "0");
INSERT INTO `wp_terms` VALUES("58", "Promo", "promo", "0");
INSERT INTO `wp_terms` VALUES("59", "Services", "services", "0");
INSERT INTO `wp_terms` VALUES("60", "Hotel", "hotel", "0");
INSERT INTO `wp_terms` VALUES("61", "CORPORATE", "corporate", "0");
INSERT INTO `wp_terms` VALUES("62", "CREATIVE", "creative", "0");
INSERT INTO `wp_terms` VALUES("63", "Team Style All", "team-style-all", "0");
INSERT INTO `wp_terms` VALUES("64", "Agency", "agency", "0");
INSERT INTO `wp_terms` VALUES("65", "Mdeal Team", "exo-team", "0");
INSERT INTO `wp_terms` VALUES("66", "Clean Team", "clean-exo-team", "0");
INSERT INTO `wp_terms` VALUES("67", "Corporate Team", "corporate-team", "0");
INSERT INTO `wp_terms` VALUES("68", "Company Owners", "company-owners", "0");
INSERT INTO `wp_terms` VALUES("71", "simple", "simple", "0");
INSERT INTO `wp_terms` VALUES("72", "grouped", "grouped", "0");
INSERT INTO `wp_terms` VALUES("73", "variable", "variable", "0");
INSERT INTO `wp_terms` VALUES("74", "external", "external", "0");
INSERT INTO `wp_terms` VALUES("76", "Menswear", "menswear", "0");
INSERT INTO `wp_terms` VALUES("77", "Womenswear", "womenswear", "0");
INSERT INTO `wp_terms` VALUES("78", "Black", "black", "0");
INSERT INTO `wp_terms` VALUES("79", "Blue", "blue", "0");
INSERT INTO `wp_terms` VALUES("80", "Large", "large", "0");
INSERT INTO `wp_terms` VALUES("81", "Medium", "medium", "0");
INSERT INTO `wp_terms` VALUES("82", "Small", "small", "0");
INSERT INTO `wp_terms` VALUES("83", "White", "white", "0");
INSERT INTO `wp_terms` VALUES("95", "Shoes", "shoes", "0");
INSERT INTO `wp_terms` VALUES("94", "Blazers", "blazers", "0");
INSERT INTO `wp_terms` VALUES("93", "Dresses", "dresses", "0");
INSERT INTO `wp_terms` VALUES("90", "Suits", "suits", "0");
INSERT INTO `wp_terms` VALUES("91", "Shirts", "shirts", "0");
INSERT INTO `wp_terms` VALUES("92", "Ties", "ties", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "nickname", "admin");
INSERT INTO `wp_usermeta` VALUES("2", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("9", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("10", "1", "wp_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("11", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("12", "1", "dismissed_wp_pointers", "wp350_media,wp360_revisions,wp360_locks,wp390_widgets,wp410_dfw,vc_pointers_backend_editor");
INSERT INTO `wp_usermeta` VALUES("13", "1", "show_welcome_panel", "0");
INSERT INTO `wp_usermeta` VALUES("68", "1", "session_tokens", "a:2:{s:64:\"497a5808149138e86a209ac22e3e6c3f27241cdde13e30128711863dfbb9a588\";a:4:{s:10:\"expiration\";i:1475332519;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36\";s:5:\"login\";i:1475159719;}s:64:\"f2ee3c15227df749debcb98d4ed397668c1164463151f17031eca5d8a84293b4\";a:4:{s:10:\"expiration\";i:1475424268;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:109:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36\";s:5:\"login\";i:1475251468;}}");
INSERT INTO `wp_usermeta` VALUES("47", "1", "billing_last_name", "");
INSERT INTO `wp_usermeta` VALUES("48", "1", "billing_company", "");
INSERT INTO `wp_usermeta` VALUES("49", "1", "billing_address_1", "");
INSERT INTO `wp_usermeta` VALUES("50", "1", "billing_address_2", "");
INSERT INTO `wp_usermeta` VALUES("40", "1", "ignore_redux_blast_1435657160", "true");
INSERT INTO `wp_usermeta` VALUES("64", "1", "shipping_country", "");
INSERT INTO `wp_usermeta` VALUES("65", "1", "shipping_state", "");
INSERT INTO `wp_usermeta` VALUES("66", "1", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("67", "1", "wpseo_seen_about_version", "2.2.1");
INSERT INTO `wp_usermeta` VALUES("39", "1", "managepluginscolumnshidden", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_usermeta` VALUES("15", "1", "wp_dashboard_quick_press_last_post_id", "1761");
INSERT INTO `wp_usermeta` VALUES("16", "1", "managenav-menuscolumnshidden", "a:3:{i:0;s:11:\"css-classes\";i:1;s:3:\"xfn\";i:2;s:11:\"description\";}");
INSERT INTO `wp_usermeta` VALUES("17", "1", "metaboxhidden_nav-menus", "a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}");
INSERT INTO `wp_usermeta` VALUES("18", "1", "nav_menu_recently_edited", "22");
INSERT INTO `wp_usermeta` VALUES("19", "1", "wp_user-settings", "libraryContent=browse&editor=tinymce&urlbutton=none&imgsize=full&posts_list_mode=list&hidetb=1&post_dfw=on&mfold=o&align=center&uploader=1");
INSERT INTO `wp_usermeta` VALUES("20", "1", "wp_user-settings-time", "1470161205");
INSERT INTO `wp_usermeta` VALUES("30", "1", "metaboxhidden_post", "a:11:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"commentsdiv\";i:5;s:7:\"slugdiv\";i:6;s:9:\"authordiv\";i:7;s:13:\"cs_post_video\";i:8;s:13:\"cs_post_audio\";i:9;s:13:\"cs_post_quote\";i:10;s:12:\"cs_post_link\";}");
INSERT INTO `wp_usermeta` VALUES("29", "1", "closedpostboxes_post", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("21", "1", "closedpostboxes_page", "a:3:{i:0;s:11:\"eg-meta-box\";i:1;s:12:\"revisionsdiv\";i:2;s:21:\"mymetabox_revslider_0\";}");
INSERT INTO `wp_usermeta` VALUES("22", "1", "metaboxhidden_page", "a:8:{i:0;s:11:\"eg-meta-box\";i:1;s:12:\"revisionsdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"commentsdiv\";i:5;s:7:\"slugdiv\";i:6;s:9:\"authordiv\";i:7;s:21:\"mymetabox_revslider_0\";}");
INSERT INTO `wp_usermeta` VALUES("28", "1", "closedpostboxes_nav-menus", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("23", "1", "meta-box-order_pricing", "a:3:{s:4:\"side\";s:65:\"submitdiv,cs_pricing_option_meta,pricing_categorydiv,postimagediv\";s:6:\"normal\";s:41:\"eg-meta-box,slugdiv,mymetabox_revslider_0\";s:8:\"advanced\";s:10:\"cs_pricing\";}");
INSERT INTO `wp_usermeta` VALUES("24", "1", "screen_layout_pricing", "2");
INSERT INTO `wp_usermeta` VALUES("26", "1", "closedpostboxes_pricing", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("27", "1", "metaboxhidden_pricing", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("32", "1", "closedpostboxes_portfolio", "a:1:{i:0;s:21:\"tagsdiv-portfolio_tag\";}");
INSERT INTO `wp_usermeta` VALUES("33", "1", "metaboxhidden_portfolio", "a:5:{i:0;s:11:\"eg-meta-box\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:21:\"mymetabox_revslider_0\";}");
INSERT INTO `wp_usermeta` VALUES("34", "1", "meta-box-order_portfolio", "a:3:{s:4:\"side\";s:66:\"submitdiv,portfolio_categorydiv,tagsdiv-portfolio_tag,postimagediv\";s:6:\"normal\";s:103:\"wpb_visual_composer,cs_portfolio,eg-meta-box,commentstatusdiv,commentsdiv,slugdiv,mymetabox_revslider_0\";s:8:\"advanced\";s:0:\"\";}");
INSERT INTO `wp_usermeta` VALUES("31", "1", "wp_user_avatar", "841");
INSERT INTO `wp_usermeta` VALUES("35", "1", "screen_layout_portfolio", "2");
INSERT INTO `wp_usermeta` VALUES("46", "1", "billing_first_name", "");
INSERT INTO `wp_usermeta` VALUES("43", "1", "closedpostboxes_product", "a:1:{i:0;s:10:\"postcustom\";}");
INSERT INTO `wp_usermeta` VALUES("44", "1", "metaboxhidden_product", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `wp_usermeta` VALUES("45", "1", "_woocommerce_persistent_cart", "a:1:{s:4:\"cart\";a:7:{s:32:\"ca026717248e3b3915f2b15b38f69de6\";a:9:{s:10:\"product_id\";i:17144;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c44cc3a1dafb37ba0bec93b81ee3796a\";a:9:{s:10:\"product_id\";i:17151;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:97.9800000000000039790393202565610408782958984375;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:97.9800000000000039790393202565610408782958984375;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"7ad45ac2157d72801438b07dffcbbb20\";a:9:{s:10:\"product_id\";i:17150;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:10:\"line_total\";d:157.979999999999989768184605054557323455810546875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:157.979999999999989768184605054557323455810546875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8982bdc05395c01f87199588e06ef71f\";a:9:{s:10:\"product_id\";i:17146;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:109;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:109;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"c04819b0706f1f3fe9352ea81623d826\";a:9:{s:10:\"product_id\";i:17149;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:48.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:48.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"8d643e95685617e013417f26f7d0f825\";a:9:{s:10:\"product_id\";i:17214;s:12:\"variation_id\";s:0:\"\";s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:38.99000000000000198951966012828052043914794921875;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";d:38.99000000000000198951966012828052043914794921875;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}s:32:\"5e38d982aecea3f5fa249828e8f1548a\";a:9:{s:10:\"product_id\";i:17222;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:99;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:99;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}");
INSERT INTO `wp_usermeta` VALUES("51", "1", "billing_city", "");
INSERT INTO `wp_usermeta` VALUES("52", "1", "billing_postcode", "");
INSERT INTO `wp_usermeta` VALUES("53", "1", "billing_country", "");
INSERT INTO `wp_usermeta` VALUES("54", "1", "billing_state", "");
INSERT INTO `wp_usermeta` VALUES("55", "1", "billing_phone", "");
INSERT INTO `wp_usermeta` VALUES("56", "1", "billing_email", "");
INSERT INTO `wp_usermeta` VALUES("57", "1", "shipping_first_name", "");
INSERT INTO `wp_usermeta` VALUES("58", "1", "shipping_last_name", "");
INSERT INTO `wp_usermeta` VALUES("59", "1", "shipping_company", "");
INSERT INTO `wp_usermeta` VALUES("60", "1", "shipping_address_1", "");
INSERT INTO `wp_usermeta` VALUES("61", "1", "shipping_address_2", "");
INSERT INTO `wp_usermeta` VALUES("62", "1", "shipping_city", "");
INSERT INTO `wp_usermeta` VALUES("63", "1", "shipping_postcode", "");
INSERT INTO `wp_usermeta` VALUES("42", "1", "edit_page_per_page", "50");
INSERT INTO `wp_usermeta` VALUES("69", "1", "wp_media_library_mode", "list");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "admin", "$P$BGdxHbIAo9PmMpV60FiGvCSG4BNFxk.", "admin", "admin@gmail.com", "", "2014-12-03 02:27:02", "", "0", "admin");

/* INSERT TABLE DATA: wp_woocommerce_attribute_taxonomies */
INSERT INTO `wp_woocommerce_attribute_taxonomies` VALUES("1", "colors", "PICK UP COLOR", "select", "menu_order", "0");
INSERT INTO `wp_woocommerce_attribute_taxonomies` VALUES("2", "sizes", "CHOOSE SIZE", "select", "menu_order", "0");

/* INSERT TABLE DATA: wp_woocommerce_termmeta */
INSERT INTO `wp_woocommerce_termmeta` VALUES("42", "94", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("2", "76", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("3", "77", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("41", "94", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("5", "76", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("6", "77", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("40", "93", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("39", "93", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("38", "93", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("37", "92", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("33", "91", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("32", "91", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("31", "90", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("30", "90", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("29", "90", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("36", "92", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("35", "92", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("34", "91", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("25", "76", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("26", "76", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("27", "77", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("28", "77", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("43", "94", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("44", "95", "order", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("45", "95", "display_type", "");
INSERT INTO `wp_woocommerce_termmeta` VALUES("46", "95", "thumbnail_id", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("47", "90", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("48", "93", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("49", "94", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("50", "95", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("51", "91", "product_count_product_cat", "0");
INSERT INTO `wp_woocommerce_termmeta` VALUES("52", "92", "product_count_product_cat", "0");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2016-09-30 16:42:32*/
/* DUPLICATOR_MYSQLDUMP_EOF */
